From: <ex...@us...> - 2017-06-20 11:03:33
|
Revision: 7791 http://sourceforge.net/p/web-erp/reponame/7791 Author: exsonqu Date: 2017-06-20 11:03:31 +0000 (Tue, 20 Jun 2017) Log Message: ----------- 20/06/17 Exson: 4.14 release rollup. Modified Paths: -------------- trunk/UpgradeDatabase.php trunk/includes/ConnectDB.inc Modified: trunk/UpgradeDatabase.php =================================================================== --- trunk/UpgradeDatabase.php 2017-06-19 11:26:35 UTC (rev 7790) +++ trunk/UpgradeDatabase.php 2017-06-20 11:03:31 UTC (rev 7791) @@ -196,6 +196,9 @@ $SQLScripts[] = './sql/mysql/upgrade4.12.3-4.13.sql'; case '4.13': $SQLScripts[] = './sql/mysql/upgrade4.13-4.13.1.sql'; + case '4.14': + $SQLScripts[] = './sql/mysql/upgrade4.13.1-4.14.sql'; + break; } //end switch } Modified: trunk/includes/ConnectDB.inc =================================================================== --- trunk/includes/ConnectDB.inc 2017-06-19 11:26:35 UTC (rev 7790) +++ trunk/includes/ConnectDB.inc 2017-06-20 11:03:31 UTC (rev 7791) @@ -4,7 +4,7 @@ * this value is saved in the $_SESSION['Versionumber'] when includes/GetConfig.php is run * if VersionNumber is < $Version then the DB update script is run */ -$Version='4.13.1'; //must update manually every time there is a DB change +$Version='4.14'; //must update manually every time there is a DB change require_once ($PathPrefix .'includes/MiscFunctions.php'); if (!isset($_SESSION['DatabaseName'])){ |