From 280d5b15e2af9f38578b3ea46fc5b007a88be7ee Mon Sep 17 00:00:00 2001 From: sparkyx Date: Thu, 17 Jun 2021 13:44:37 +0200 Subject: [PATCH] Typo menu --- include/constant.php | 2 +- include/sql/patch/upgrade162.sql | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 include/sql/patch/upgrade162.sql diff --git a/include/constant.php b/include/constant.php index 4a3d4ba34..9a1eeaeb5 100644 --- a/include/constant.php +++ b/include/constant.php @@ -116,7 +116,7 @@ if ( !defined ("NOALYSS_PACKAGE_REPOSITORY")) { if ( ! defined ("SYSINFO_DISPLAY")) { define ("SYSINFO_DISPLAY",TRUE); } -define ("DBVERSION",162); +define ("DBVERSION",163); define ("MONO_DATABASE",25); define ("DBVERSIONREPO",20); define ('NOTFOUND','--not found--'); diff --git a/include/sql/patch/upgrade162.sql b/include/sql/patch/upgrade162.sql new file mode 100644 index 000000000..d90d22033 --- /dev/null +++ b/include/sql/patch/upgrade162.sql @@ -0,0 +1,7 @@ +begin; +update menu_ref set me_menu='Profil' , me_description_etendue='Configuration des profils des utilisateurs, permet de fixer les journaux, profils dans les documents et stock que ce profil peut utiliser. Cela limite les utilisateurs puisque ceux-ci ont un profil', +me_description='Configuration profil' where me_code='CFGPRO'; + + +insert into version (val,v_description) values (163,'typo in menu'); +commit ; \ No newline at end of file