updated API version for 1.4RC2

This commit is contained in:
Ralf Becker 2007-05-27 06:41:31 +00:00
parent 43672fa9a4
commit c7b304fd55
2 changed files with 9 additions and 3 deletions

View File

@ -14,7 +14,7 @@
/* Basic information about this app */
$setup_info['phpgwapi']['name'] = 'phpgwapi';
$setup_info['phpgwapi']['title'] = 'eGroupWare API';
$setup_info['phpgwapi']['version'] = '1.3.022';
$setup_info['phpgwapi']['version'] = '1.3.023';
$setup_info['phpgwapi']['versions']['current_header'] = '1.28';
$setup_info['phpgwapi']['enable'] = 3;
$setup_info['phpgwapi']['app_order'] = 1;

View File

@ -782,7 +782,13 @@
$test[] = '1.3.021';
function phpgwapi_upgrade1_3_021()
{
# 1.4 Beta RC 1
# 1.4 RC 1
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.3.022';
}
?>
$test[] = '1.3.022';
function phpgwapi_upgrade1_3_022()
{
# 1.4 RC 2
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.3.023';
}