From 3cfceee3b0a6566002db5e292bfa1acf2ad4b80a Mon Sep 17 00:00:00 2001 From: sparkyx Date: Sat, 27 Dec 2025 13:24:07 +0100 Subject: [PATCH] Fix bug : missing me_type for PDF:operation_detail --- html/css/style-classic7.css | 4 ++++ include/constant.php | 2 +- include/sql/patch/upgrade205.sql | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 include/sql/patch/upgrade205.sql diff --git a/html/css/style-classic7.css b/html/css/style-classic7.css index 384fe5494..3976a56c0 100644 --- a/html/css/style-classic7.css +++ b/html/css/style-classic7.css @@ -4279,3 +4279,7 @@ span.nb-round { font-size:120%; } } + +#module_setting .selectedcell { + background-color:beige; +} \ No newline at end of file diff --git a/include/constant.php b/include/constant.php index 889d35649..85c67c639 100644 --- a/include/constant.php +++ b/include/constant.php @@ -28,7 +28,7 @@ global $version_noalyss; define('NOALYSS_VERSION', 10000 ); // Database schema version -define("DBVERSION", 205); +define("DBVERSION", 206); // version for MONO_DATABASE define("MONO_DATABASE", 25); diff --git a/include/sql/patch/upgrade205.sql b/include/sql/patch/upgrade205.sql new file mode 100644 index 000000000..113e3fcb8 --- /dev/null +++ b/include/sql/patch/upgrade205.sql @@ -0,0 +1,4 @@ +begin; +update menu_ref set me_type='PR' where me_code = 'PDF:operation_detail'; +insert into version (val,v_description) values (206,'Missing me_type'); +commit;