setting version to 1.6.001

This commit is contained in:
Ralf Becker 2008-11-24 10:44:25 +00:00
parent e6ddae1c52
commit 1f920ebb66
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.5.017';
$setup_info['phpgwapi']['version'] = '1.6.001';
$setup_info['phpgwapi']['versions']['current_header'] = '1.29';
$setup_info['phpgwapi']['enable'] = 3;
$setup_info['phpgwapi']['app_order'] = 1;

View File

@ -602,3 +602,11 @@ function phpgwapi_upgrade1_5_016()
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.5.017';
}
/**
* Final 1.6 release
*/
function phpgwapi_upgrade1_5_017()
{
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.6.001';
}