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');
|
2001-06-01 12:22:27 +02:00
|
|
|
|
2006-03-08 22:39:21 +01:00
|
|
|
// updates from the stable 1.2 branch
|
|
|
|
$test[] = '1.2.007';
|
|
|
|
function phpgwapi_upgrade1_2_007()
|
2004-07-23 02:46:01 +02:00
|
|
|
{
|
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
|
|
|
}
|
2006-01-06 06:05:20 +01:00
|
|
|
?>
|