From a97cd8af6cbaf0e57c1f6e2b9181f8d572eca346 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 4 Oct 2006 13:10:13 +0000 Subject: [PATCH] Fix order of includes (bug #1569277). --- ChangeLog | 1 + tbl_alter.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f8141a64d..69fec55f6 100755 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ $Source$ * tbl_replace.php, libraries/config.default.php: Add support for UTC_DATE, UTC_TIME and UTC_TIMESTAMP functions, based on patch #1563585, thanks to Alexander Schuch - ci-dev. + * tbl_alter.php: Fix order of includes (bug #1569277). 2006-10-03 Marc Delisle ### 2.9.0.2 released from MAINT_2_9_0 diff --git a/tbl_alter.php b/tbl_alter.php index cc92eab89..cd771cfe5 100644 --- a/tbl_alter.php +++ b/tbl_alter.php @@ -2,12 +2,12 @@ /* $Id$ */ // vim: expandtab sw=4 ts=4 sts=4: -require_once './libraries/Table.class.php'; - /** * Gets some core libraries */ require_once('./libraries/common.lib.php'); +require_once('./libraries/Table.class.php'); + $js_to_run = 'functions.js'; require_once('./libraries/header.inc.php');