egroupware/phpgwapi/setup/tables_update.inc.php

34 lines
1.3 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');
include('tables_update_1_2.inc.php');
// updates from the stable 1.4 branch
$test[] = '1.4.001';
function phpgwapi_upgrade1_4_001()
{
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.5.001';
2007-05-27 08:41:31 +02:00
}
$test[] = '1.4.002';
function phpgwapi_upgrade1_4_002()
{
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.5.001';
}