|
From: Jon O. <jon...@us...> - 2007-05-05 20:40:54
|
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs16:/tmp/cvs-serv2311/schemas Modified Files: upgrade_schemas_map.php Log Message: Updated header... Index: upgrade_schemas_map.php =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/upgrade_schemas_map.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** upgrade_schemas_map.php 28 Apr 2007 19:43:42 -0000 1.14 --- upgrade_schemas_map.php 5 May 2007 20:40:27 -0000 1.15 *************** *** 1,38 **** <?php - /** ------------------------------------------------------------------------ - * subject : mxBB-Portal Upgrade Schemas Map - * begin : june, 2002 - * copyright : (C) 2002-2005 mxBB-Portal - * email : jon...@ho... - * project site : www.mx-system.com - * - * description : - * ------------------------------------------------------------------------- - * - * $Id$ - */ - /** ! * 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. ! */ ! ! // ! // The following array is processed by mx_install.php script to guess the SQL schemas ! // that should be applied when upgrading a target system. ! // ! // Please, note we use here 'mx_table_' as table prefix, as we also do in schema files. ! // This will be replaced by mx_install.php with the real table prefix selected by the ! // user in the installation panels. ! // ! // The map is read as follows: ! // ! // If the SQL statement fails, mx_install.php will process upgrades schemas from that ! // point till the end of the table. So, the order of elements IS very important. ;-) ! // ! // When adding more elements to the map, please do so at the end. ! // $upgrade_schemas_map = array( --- 1,12 ---- <?php /** ! * ! * @package mxBB Installation ! * @version $Id$ ! * @copyright (c) 2002-2006 mxBB Project Team ! * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ! * @link http://www.mxbb.net ! * ! */ $upgrade_schemas_map = array( *************** *** 51,54 **** //echo('upgrade_schemas_map: '.var_export($upgrade_schemas_map, true)."<br />\n"); // -------------------- - ?> \ No newline at end of file --- 25,27 ---- |