From: <tu...@us...> - 2018-01-09 16:30:50
|
Revision: 7911 http://sourceforge.net/p/web-erp/reponame/7911 Author: turbopt Date: 2018-01-09 16:30:48 +0000 (Tue, 09 Jan 2018) Log Message: ----------- Z_MakeNewCompany.php, default.sql, demo.sql: Remove doubled underscore in EDI_Sent reference. (Reported in forums: http://weberp.org/forum/showthread.php?tid=7920) Modified Paths: -------------- trunk/Z_MakeNewCompany.php trunk/doc/Change.log trunk/sql/mysql/country_sql/default.sql trunk/sql/mysql/country_sql/demo.sql Modified: trunk/Z_MakeNewCompany.php =================================================================== --- trunk/Z_MakeNewCompany.php 2018-01-09 01:14:56 UTC (rev 7910) +++ trunk/Z_MakeNewCompany.php 2018-01-09 16:30:48 UTC (rev 7911) @@ -191,7 +191,7 @@ unset ($_SESSION['Items']); unset ($_SESSION['CreditItems']); - $SQL ="UPDATE config SET confvalue='companies/" . $_POST['NewDatabase'] . "/EDI__Sent' WHERE confname='EDI_MsgSent'"; + $SQL ="UPDATE config SET confvalue='companies/" . $_POST['NewDatabase'] . "/EDI_Sent' WHERE confname='EDI_MsgSent'"; $result = DB_query($SQL); $SQL ="UPDATE config SET confvalue='companies/" . $_POST['NewDatabase'] . "/EDI_Incoming_Orders' WHERE confname='EDI_Incoming_Orders'"; $result = DB_query($SQL); Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2018-01-09 01:14:56 UTC (rev 7910) +++ trunk/doc/Change.log 2018-01-09 16:30:48 UTC (rev 7911) @@ -1,5 +1,6 @@ webERP Change Log +9/1/18 Paul Becker (PaulT commit): Z_MakeNewCompany.php, default.sql, demo.sql: Remove doubled underscore in EDI_Sent reference. (Reported in forums: http://weberp.org/forum/showthread.php?tid=7920) 8/1/18 Paul Becker (PaulT commit): PDFTransPageHeader.inc, PDFTransPageHeaderPortrait.inc: Add additional address fields and/or adds an extra space between some address fields. (Reported in forums: http://www.weberp.org/forum/showthread.php?tid=7942) 8/1/18 Tim (PaulT commit): PO_Items.php: Fix/improve Supplier checkbox handling, and fix a PHP7 compatibility issue. (Reported in forums by Confucius: http://www.weberp.org/forum/showthread.php?tid=7958) 8/1/18 Paul Becker/Tim (PaulT commit): SalesGraph.php: Replace period numbers in graph title with month and year. (Reported in forums: http://www.weberp.org/forum/showthread.php?tid=7946) Modified: trunk/sql/mysql/country_sql/default.sql =================================================================== --- trunk/sql/mysql/country_sql/default.sql 2018-01-09 01:14:56 UTC (rev 7910) +++ trunk/sql/mysql/country_sql/default.sql 2018-01-09 16:30:48 UTC (rev 7911) @@ -6661,7 +6661,7 @@ INSERT INTO `config` VALUES ('EDIReference','WEBERP'); INSERT INTO `config` VALUES ('EDI_Incoming_Orders','companies/test/EDI_Incoming_Orders'); INSERT INTO `config` VALUES ('EDI_MsgPending','companies/test/EDI_Pending'); -INSERT INTO `config` VALUES ('EDI_MsgSent','companies/test/EDI__Sent'); +INSERT INTO `config` VALUES ('EDI_MsgSent','companies/test/EDI_Sent'); INSERT INTO `config` VALUES ('ExchangeRateFeed','Google'); INSERT INTO `config` VALUES ('Extended_CustomerInfo','1'); INSERT INTO `config` VALUES ('Extended_SupplierInfo','1'); Modified: trunk/sql/mysql/country_sql/demo.sql =================================================================== --- trunk/sql/mysql/country_sql/demo.sql 2018-01-09 01:14:56 UTC (rev 7910) +++ trunk/sql/mysql/country_sql/demo.sql 2018-01-09 16:30:48 UTC (rev 7911) @@ -8581,7 +8581,7 @@ INSERT INTO `config` VALUES ('EDIReference','WEBERP'); INSERT INTO `config` VALUES ('EDI_Incoming_Orders','companies/test/EDI_Incoming_Orders'); INSERT INTO `config` VALUES ('EDI_MsgPending','companies/test/EDI_Pending'); -INSERT INTO `config` VALUES ('EDI_MsgSent','companies/test/EDI__Sent'); +INSERT INTO `config` VALUES ('EDI_MsgSent','companies/test/EDI_Sent'); INSERT INTO `config` VALUES ('ExchangeRateFeed','Google'); INSERT INTO `config` VALUES ('Extended_CustomerInfo','1'); INSERT INTO `config` VALUES ('Extended_SupplierInfo','1'); |