From b02d8add63607a6de1927409cf090bb3f3cb0b0e Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 15 Jan 2009 01:03:19 +0000 Subject: [PATCH] Fix a bug in install --- ChangeLog | 1 + htdocs/conf/conf.php.example | 2 +- mysql/tables/llx_product_stock.sql | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2c909e832ee..1f90f9c9b01 100644 --- a/ChangeLog +++ b/ChangeLog @@ -38,6 +38,7 @@ For developers: - Removed som deprecated files. - Renamed all function dolibarr_xxx into dol_xxx to have same prefix everywhere. - Rewrite clone feature for supplier invoice to work like other clone features. +- First change to manage a future feature "stock PMP value". ***** Changelog for 2.5 compared to 2.4 ***** diff --git a/htdocs/conf/conf.php.example b/htdocs/conf/conf.php.example index 7fad067e177..8a51766f733 100644 --- a/htdocs/conf/conf.php.example +++ b/htdocs/conf/conf.php.example @@ -153,7 +153,7 @@ $dolibarr_main_authentication="dolibarr"; # Examples: # $dolibarr_main_authentication=0; # -$dolibarr_main_force_https=0 +$dolibarr_main_force_https="0" # Parameters used to setup LDAP authentication. diff --git a/mysql/tables/llx_product_stock.sql b/mysql/tables/llx_product_stock.sql index 893390535f6..e2075e1e192 100644 --- a/mysql/tables/llx_product_stock.sql +++ b/mysql/tables/llx_product_stock.sql @@ -24,7 +24,7 @@ create table llx_product_stock tms timestamp, fk_product integer NOT NULL, fk_entrepot integer NOT NULL, - reel integer -- physical stock + reel integer, -- physical stock pmp double(24,8) default 0 NOT NULL -- PMP value for product in this warehous )type=innodb;