Fix order of includes (bug #1569277).

This commit is contained in:
Michal Čihař
2006-10-04 13:10:13 +00:00
parent d66051842f
commit a97cd8af6c
2 changed files with 3 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ $Source$
* tbl_replace.php, libraries/config.default.php: Add support for UTC_DATE, * tbl_replace.php, libraries/config.default.php: Add support for UTC_DATE,
UTC_TIME and UTC_TIMESTAMP functions, based on patch #1563585, thanks to UTC_TIME and UTC_TIMESTAMP functions, based on patch #1563585, thanks to
Alexander Schuch - ci-dev. Alexander Schuch - ci-dev.
* tbl_alter.php: Fix order of includes (bug #1569277).
2006-10-03 Marc Delisle <lem9@users.sourceforge.net> 2006-10-03 Marc Delisle <lem9@users.sourceforge.net>
### 2.9.0.2 released from MAINT_2_9_0 ### 2.9.0.2 released from MAINT_2_9_0

View File

@@ -2,12 +2,12 @@
/* $Id$ */ /* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4: // vim: expandtab sw=4 ts=4 sts=4:
require_once './libraries/Table.class.php';
/** /**
* Gets some core libraries * Gets some core libraries
*/ */
require_once('./libraries/common.lib.php'); require_once('./libraries/common.lib.php');
require_once('./libraries/Table.class.php');
$js_to_run = 'functions.js'; $js_to_run = 'functions.js';
require_once('./libraries/header.inc.php'); require_once('./libraries/header.inc.php');