update to 1.8.006

This commit is contained in:
Ralf Becker 2014-02-11 09:33:35 +00:00
parent 5c2533c88c
commit 230c5f1eac
2 changed files with 7 additions and 3 deletions

View File

@ -11,14 +11,14 @@
/* Basic information about this app */ /* Basic information about this app */
$setup_info['phpgwapi']['name'] = 'phpgwapi'; $setup_info['phpgwapi']['name'] = 'phpgwapi';
$setup_info['phpgwapi']['title'] = 'eGroupWare API'; $setup_info['phpgwapi']['title'] = 'EGroupware API';
$setup_info['phpgwapi']['version'] = '1.8.005'; $setup_info['phpgwapi']['version'] = '1.8.006';
$setup_info['phpgwapi']['versions']['current_header'] = '1.29'; $setup_info['phpgwapi']['versions']['current_header'] = '1.29';
$setup_info['phpgwapi']['enable'] = 3; $setup_info['phpgwapi']['enable'] = 3;
$setup_info['phpgwapi']['app_order'] = 1; $setup_info['phpgwapi']['app_order'] = 1;
$setup_info['phpgwapi']['license'] = 'GPL'; $setup_info['phpgwapi']['license'] = 'GPL';
$setup_info['phpgwapi']['maintainer'] = $setup_info['phpgwapi']['author'] = array( $setup_info['phpgwapi']['maintainer'] = $setup_info['phpgwapi']['author'] = array(
'name' => 'eGroupWare coreteam', 'name' => 'EGroupware coreteam',
'email' => 'egroupware-developers@lists.sourceforge.net', 'email' => 'egroupware-developers@lists.sourceforge.net',
); );

View File

@ -375,3 +375,7 @@ function phpgwapi_upgrade1_8_004()
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.8.005'; return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.8.005';
} }
function phpgwapi_upgrade1_8_005()
{
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.8.006';
}