This commit is contained in:
Ralf Becker 2008-03-19 13:06:16 +00:00
parent f63aee9618
commit f420fd2d95
2 changed files with 8 additions and 1 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.4.002';
$setup_info['phpgwapi']['version'] = '1.4.003';
$setup_info['phpgwapi']['versions']['current_header'] = '1.28';
$setup_info['phpgwapi']['enable'] = 3;
$setup_info['phpgwapi']['app_order'] = 1;

View File

@ -813,3 +813,10 @@
// 1.4.002 bugfix/maintainance release
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.4.002';
}
$test[] = '1.4.002';
function phpgwapi_upgrade1_4_002()
{
// 1.4.003 security+bugfix release
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.4.003';
}