1.2.105 bugfix release

This commit is contained in:
Ralf Becker 2006-09-05 14:12:28 +00:00
parent 938adaa786
commit 1c381dc114
2 changed files with 9 additions and 2 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.2.104';
$setup_info['phpgwapi']['version'] = '1.2.105';
$setup_info['phpgwapi']['versions']['current_header'] = '1.28';
$setup_info['phpgwapi']['enable'] = 3;
$setup_info['phpgwapi']['app_order'] = 1;

View File

@ -1189,6 +1189,7 @@
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.2.103';
}
$test[] = '1.2.103';
function phpgwapi_upgrade1_2_103()
{
@ -1199,4 +1200,10 @@
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.2.104';
}
?>
$test[] = '1.2.104';
function phpgwapi_upgrade1_2_104()
{
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.2.105';
}