updating version to 1.0.0.005 for the bugfix release

This commit is contained in:
Ralf Becker 2004-09-08 16:15:25 +00:00
parent 7a6e1b807a
commit 3bfb8696fc
2 changed files with 9 additions and 1 deletions

View File

@ -14,7 +14,7 @@
/* Basic information about this app */
$setup_info['phpgwapi']['name'] = 'phpgwapi';
$setup_info['phpgwapi']['title'] = 'phpgwapi';
$setup_info['phpgwapi']['version'] = '1.0.0.004';
$setup_info['phpgwapi']['version'] = '1.0.0.005';
$setup_info['phpgwapi']['versions']['current_header'] = '1.27';
$setup_info['phpgwapi']['enable'] = 3;
$setup_info['phpgwapi']['app_order'] = 1;

View File

@ -1626,4 +1626,12 @@
$GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.0.0.004';
return $GLOBALS['setup_info']['phpgwapi']['currentver'];
}
$test[] = '1.0.0.004';
function phpgwapi_upgrade1_0_0_004()
{
$GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.0.0.005';
return $GLOBALS['setup_info']['phpgwapi']['currentver'];
}
?>