Fix bug : missing me_type for PDF:operation_detail
This commit is contained in:
parent
f7d068e269
commit
3cfceee3b0
3 changed files with 9 additions and 1 deletions
|
|
@ -4279,3 +4279,7 @@ span.nb-round {
|
|||
font-size:120%;
|
||||
}
|
||||
}
|
||||
|
||||
#module_setting .selectedcell {
|
||||
background-color:beige;
|
||||
}
|
||||
|
|
@ -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);
|
||||
|
|
|
|||
4
include/sql/patch/upgrade205.sql
Normal file
4
include/sql/patch/upgrade205.sql
Normal file
|
|
@ -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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue