From 93024830f519f72cbaf0ec7378af6a1554267846 Mon Sep 17 00:00:00 2001 From: Juanjo Menent <jmenent@2byte.es> Date: Mon, 27 Apr 2015 20:22:03 +0200 Subject: [PATCH] -Activate const PRODUCT_USE_OLD_PATH_FOR_PHOTOS by default for old instances -Update changelog for 3.7.1 --- ChangeLog | 6 ++++++ htdocs/install/mysql/migration/3.6.0-3.7.0.sql | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 10796fa9f34..fd88afc1c12 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,12 @@ Upgrading to any other version or database system is abolutely required BEFORE t make a migration. +***** ChangeLog for 3.7.1 compared to 3.7.* ***** +- Fix: Bug in the new photo system +- Fix: Error management +- Fix: [ Bug #2714 ] Members -> Memberxy-> Agenda -> technical Error +- Fix: [ Bug #2713 ] 3.7.0 mailing-unsubscribe.php not unsubscribe + ***** ChangeLog for 3.7 compared to 3.6.* ***** For users: - New: Match other auth system: Login can be done entering login or user diff --git a/htdocs/install/mysql/migration/3.6.0-3.7.0.sql b/htdocs/install/mysql/migration/3.6.0-3.7.0.sql index 6102997c3ad..b1104f98fde 100755 --- a/htdocs/install/mysql/migration/3.6.0-3.7.0.sql +++ b/htdocs/install/mysql/migration/3.6.0-3.7.0.sql @@ -1175,4 +1175,6 @@ ALTER TABLE llx_commande_fournisseur_dispatch ADD COLUMN fk_commandefourndet INT insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,localtax1,localtax1_type,localtax2,localtax2_type,note,active) values (211, 21, '0','0',0,0,0,0,'IVA Rate 0',1); insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,localtax1,localtax1_type,localtax2,localtax2_type,note,active) values (212, 21, '18','0',7.5,2,0,0,'IVA standard rate',1); -ALTER TABLE llx_livraison MODIFY COLUMN date_delivery DATETIME NULL DEFAULT NULL; \ No newline at end of file +ALTER TABLE llx_livraison MODIFY COLUMN date_delivery DATETIME NULL DEFAULT NULL; + +INSERT INTO llx_const (name, value, type, note, visible, entity) values ('PRODUCT_USE_OLD_PATH_FOR_PHOTO','1','chaine','Use old path for products images',1,1); \ No newline at end of file -- GitLab