Fix to get around erroneous version in admin/setup/setup.inc.php

This commit is contained in:
Miles Lott 2001-05-31 22:53:40 +00:00
parent 9b43ab3ba7
commit 5c92817fde
2 changed files with 13 additions and 0 deletions

View File

@ -1678,6 +1678,12 @@
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.13.001';
}
$test[] = '0.9.11.011';
function upgrade0_9_11_011()
{
global $phpgw_info;
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.13.001';
}
reset ($test);
while (list ($key, $value) = each ($test)){

View File

@ -2198,6 +2198,13 @@
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.13.001';
}
$test[] = '0.9.11.011';
function upgrade0_9_11_011()
{
global $phpgw_info;
$phpgw_info['setup']['currentver']['phpgwapi'] = '0.9.13.001';
}
reset ($test);
while (list ($key, $value) = each ($test)){
if ($phpgw_info["setup"]["currentver"]["phpgwapi"] == $value) {