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;