pushing version to 1.6.003

This commit is contained in:
Ralf Becker 2010-02-14 06:26:56 +00:00
parent 3221c6e8ba
commit caeea37842
2 changed files with 9 additions and 1 deletions

View File

@ -12,7 +12,7 @@
/* Basic information about this app */
$setup_info['phpgwapi']['name'] = 'phpgwapi';
$setup_info['phpgwapi']['title'] = 'eGroupWare API';
$setup_info['phpgwapi']['version'] = '1.6.002';
$setup_info['phpgwapi']['version'] = '1.6.003';
$setup_info['phpgwapi']['versions']['current_header'] = '1.29';
$setup_info['phpgwapi']['enable'] = 3;
$setup_info['phpgwapi']['app_order'] = 1;

View File

@ -625,3 +625,11 @@ function phpgwapi_upgrade1_6_001()
{
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.6.002';
}
/**
* Final 1.6.003 security and bugfix release
*/
function phpgwapi_upgrade1_6_002()
{
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.6.003';
}