From 91b75ac4b1c27b27a0be5fd2e5a233739e78b550 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 10 Feb 2007 13:50:07 +0000 Subject: [PATCH] =?UTF-8?q?Les=20param=20du=20module=20OSC=20commerce=201?= =?UTF-8?q?=20n'ont=20plus=20a=20etre=20visible=20car=20il=20existe=20un?= =?UTF-8?q?=20=E9cran=20de=20config?= 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 | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mysql/data/data.sql b/mysql/data/data.sql index ac23a3fe5b8..aad6176562b 100644 --- a/mysql/data/data.sql +++ b/mysql/data/data.sql @@ -158,7 +158,7 @@ insert into llx_const (name, value, type, note, visible) values ('ADHERENT_CARD_ -- -- OsCommerce 1 -- -insert into llx_const (name, value, type) values ('OSC_DB_HOST','localhost','chaine'); +insert into llx_const (name, value, type, note, visible) values ('OSC_DB_HOST','localhost','chaine', 'Host for OSC database for OSCommerce module 1', 0); -- -- Notification diff --git a/mysql/migration/2.0.0-2.1.0.sql b/mysql/migration/2.0.0-2.1.0.sql index ed89deec16d..a47c403ff8c 100644 --- a/mysql/migration/2.0.0-2.1.0.sql +++ b/mysql/migration/2.0.0-2.1.0.sql @@ -215,6 +215,7 @@ insert into llx_const(name,value,type,visible,note) values('MAIN_SHOW_DEVELOPMEN insert into llx_const(name,value,type,visible,note) values('PRODUCT_SHOW_WHEN_CREATE','0','yesno',1,'Add products\' list in first step of proposal, invoice, order creation'); delete from llx_const where name in ('OSC_CATALOG_URL','OSC_LANGUAGE_ID'); +update llx_const set visible=0 where name like 'OSC_DB_%'; alter table llx_paiementfourn add statut smallint(6) NOT NULL DEFAULT 0;