|
From: <ex...@us...> - 2016-11-27 07:14:23
|
Revision: 7686
http://sourceforge.net/p/web-erp/reponame/7686
Author: exsonqu
Date: 2016-11-27 07:14:21 +0000 (Sun, 27 Nov 2016)
Log Message:
-----------
27/11/16 Exson: 4.13.1 release rollup for includes/ConnectDB.inc, UpgradeDatabase.php, upgrade4.13-4.13.1.sql.
Modified Paths:
--------------
trunk/UpgradeDatabase.php
trunk/includes/ConnectDB.inc
trunk/sql/mysql/upgrade4.13-4.13.1.sql
Modified: trunk/UpgradeDatabase.php
===================================================================
--- trunk/UpgradeDatabase.php 2016-11-26 11:36:14 UTC (rev 7685)
+++ trunk/UpgradeDatabase.php 2016-11-27 07:14:21 UTC (rev 7686)
@@ -194,6 +194,8 @@
$SQLScripts[] = './sql/mysql/upgrade4.12.2-4.12.3.sql';
case '4.12.3':
$SQLScripts[] = './sql/mysql/upgrade4.12.3-4.13.sql';
+ case '4.13.1':
+ $SQLScripts[] = './sql/mysql/upgrade4.13-4.13.1.sql';
break;
} //end switch
}
Modified: trunk/includes/ConnectDB.inc
===================================================================
--- trunk/includes/ConnectDB.inc 2016-11-26 11:36:14 UTC (rev 7685)
+++ trunk/includes/ConnectDB.inc 2016-11-27 07:14:21 UTC (rev 7686)
@@ -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'; //must update manually every time there is a DB change
+$Version='4.13.1'; //must update manually every time there is a DB change
require_once ($PathPrefix .'includes/MiscFunctions.php');
if (!isset($_SESSION['DatabaseName'])){
Modified: trunk/sql/mysql/upgrade4.13-4.13.1.sql
===================================================================
--- trunk/sql/mysql/upgrade4.13-4.13.1.sql 2016-11-26 11:36:14 UTC (rev 7685)
+++ trunk/sql/mysql/upgrade4.13-4.13.1.sql 2016-11-27 07:14:21 UTC (rev 7686)
@@ -18,3 +18,6 @@
-- Add new scripts:
INSERT INTO `scripts` (`script`, `pagesecurity`, `description`) VALUES ('GLCashFlowsIndirect.php', '8', 'Shows a statement of cash flows for the period using the indirect method');
INSERT INTO `scripts` (`script`, `pagesecurity`, `description`) VALUES ('GLCashFlowsSetup.php', '8', 'Setups the statement of cash flows sections');
+
+-- Update version number:
+UPDATE config SET confvalue='4.13.1' WHERE confname='VersionNumber';
|