From 3eea3bd8c0a8fc34067d48d81485240edf4d260d Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 3 Apr 2003 16:55:03 +0000 Subject: [PATCH] update --- phpgwapi/setup/tables_update.inc.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/phpgwapi/setup/tables_update.inc.php b/phpgwapi/setup/tables_update.inc.php index e8b1b14c3c..ad2fcaef7b 100644 --- a/phpgwapi/setup/tables_update.inc.php +++ b/phpgwapi/setup/tables_update.inc.php @@ -74,6 +74,18 @@ return $GLOBALS['setup_info']['phpgwapi']['currentver']; } + $test[] = '0.9.14.501'; + function phpgwapi_upgrade0_9_14_501() + { + // 0.9.14.5xx are the development-versions of the 0.9.16 release (based on the 0.9.14 api) + // as 0.9.15.xxx are already used in HEAD + + // 0.9.15.001/2/3/4 are already included in 0.9.14.501 + + $GLOBALS['setup_info']['phpgwapi']['currentver'] = '0.9.15.005'; + return $GLOBALS['setup_info']['phpgwapi']['currentver']; + } + $test[] = '0.9.15.001'; function phpgwapi_upgrade0_9_15_001() { @@ -145,7 +157,7 @@ $GLOBALS['phpgw_setup']->oProc->query("INSERT INTO phpgw_config (config_app, config_name, config_value) VALUES ('phpgwapi','sessions_timeout',7200)"); $GLOBALS['phpgw_setup']->oProc->query("INSERT INTO phpgw_config (config_app, config_name, config_value) VALUES ('phpgwapi','sessions_app_timeout',86400)"); - $GLOBALS['setup_info']['phpgwapi']['currentver'] = '0.9.15.006'; + $GLOBALS['setup_info']['phpgwapi']['currentver'] = '0.9.15.007'; // as 0.9.15.006 is already included return $GLOBALS['setup_info']['phpgwapi']['currentver']; }