egroupware_official/phpgwapi/setup/tables_update.inc.php

45 lines
1.7 KiB
PHP
Raw Normal View History

2001-02-04 13:27:05 +01:00
<?php
2002-11-25 19:33:30 +01:00
/**************************************************************************\
2004-08-09 14:40:51 +02:00
* eGroupWare - Setup *
* http://www.egroupware.org *
2002-11-25 19:33:30 +01:00
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
// $Id$
2004-08-09 14:40:51 +02:00
/* Include older eGroupWare update support */
include('tables_update_0_9_9.inc.php');
include('tables_update_0_9_10.inc.php');
include('tables_update_0_9_12.inc.php');
include('tables_update_0_9_14.inc.php');
2006-03-08 22:39:21 +01:00
include('tables_update_1_0.inc.php');
2006-03-08 22:39:21 +01:00
// updates from the stable 1.2 branch
$test[] = '1.2.007';
function phpgwapi_upgrade1_2_007()
{
2006-03-08 22:39:21 +01:00
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.3.001';
2006-01-08 10:03:01 +01:00
}
$test[] = '1.2.008';
function phpgwapi_upgrade1_2_008()
{
// fixing the lang change from zt -> zh-tw for existing installations
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.3.002';
}
// updates in HEAD / 1.3
$test[] = '1.3.001';
function phpgwapi_upgrade1_3_001()
{
// fixing the lang change from zt -> zh-tw for existing installations
$GLOBALS['egw_setup']->db->update('egw_languages',array('lang_id' => 'zh-tw'),array('lang_id' => 'zt'),__LINE__,__FILE__);
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.3.002';
}
?>