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. *
|
|
|
|
\**************************************************************************/
|
2003-08-28 16:31:11 +02:00
|
|
|
|
|
|
|
// $Id$
|
|
|
|
|
2004-08-09 14:40:51 +02:00
|
|
|
/* Include older eGroupWare update support */
|
2003-07-21 17:45:49 +02:00
|
|
|
include('tables_update_0_9_9.inc.php');
|
|
|
|
include('tables_update_0_9_10.inc.php');
|
|
|
|
include('tables_update_0_9_12.inc.php');
|
2004-07-15 08:47:34 +02:00
|
|
|
include('tables_update_0_9_14.inc.php');
|
2006-03-08 22:39:21 +01:00
|
|
|
include('tables_update_1_0.inc.php');
|
2007-06-04 09:05:53 +02:00
|
|
|
include('tables_update_1_2.inc.php');
|
2001-06-01 12:22:27 +02:00
|
|
|
|
2007-06-04 09:05:53 +02:00
|
|
|
// updates from the stable 1.4 branch
|
|
|
|
$test[] = '1.4.001';
|
|
|
|
function phpgwapi_upgrade1_4_001()
|
2004-07-23 02:46:01 +02:00
|
|
|
{
|
2007-06-04 09:05:53 +02:00
|
|
|
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.5.001';
|
2007-05-27 08:41:31 +02:00
|
|
|
}
|
2007-09-24 10:45:49 +02:00
|
|
|
|
|
|
|
$test[] = '1.4.002';
|
|
|
|
function phpgwapi_upgrade1_4_002()
|
|
|
|
{
|
|
|
|
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.5.001';
|
|
|
|
}
|