From dcdd61eb196c9969da06c4599cbc12f500ba2af5 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 22 Mar 2006 00:04:27 +0000 Subject: [PATCH] =?UTF-8?q?Ajout=20option=20MAIN=5FMULTILANGS=20pour=20avo?= =?UTF-8?q?ir=20une=20interface=20qui=20g=E8re=20plusieurs=20langues=20(re?= =?UTF-8?q?nd=20obsolete=20le=20param=20PRODUIT=5FMULTILANGS)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql/data/data.sql | 2 +- mysql/migration/2.0.0-2.1.0.sql | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/mysql/data/data.sql b/mysql/data/data.sql index a7cb50269fc..c3a58100d02 100644 --- a/mysql/data/data.sql +++ b/mysql/data/data.sql @@ -68,7 +68,7 @@ insert into llx_const (name, value, type, note, visible) values ('COMPTA_ONLINE_ -- IHM -- insert into llx_const (name, value, type, note, visible) values ('MAIN_LANG_DEFAULT','fr_FR','chaine','Langue par défaut pour les écrans Dolibarr',0); -insert into llx_const (name, value, type, note, visible) values ('SIZE_LISTE_LIMIT','25','chaine','Longueur maximum des listes',0); +insert into llx_const (name, value, type, note, visible) values ('MAIN_SIZE_LISTE_LIMIT','25','chaine','Longueur maximum des listes',0); insert into llx_const (name, value, type, note, visible) values ('MAIN_SHOW_WORKBOARD','1','yesno','Affichage tableau de bord de travail Dolibarr',0); insert into llx_const (name, value, type, note, visible) values ('MAIN_MENU_BARRETOP','default.php','chaine','Module de gestion de la barre de menu du haut pour utilisateurs internes',0); diff --git a/mysql/migration/2.0.0-2.1.0.sql b/mysql/migration/2.0.0-2.1.0.sql index e263fc0bf70..7d99c9ed1f5 100644 --- a/mysql/migration/2.0.0-2.1.0.sql +++ b/mysql/migration/2.0.0-2.1.0.sql @@ -106,3 +106,6 @@ create table llx_avoir_model_pdf drop table if exists llx_soc_recontact; + + +update llx_const set name='MAIN_SIZE_LISTE_LIMIT' where name='SIZE_LISTE_LIMIT';