From b48cbebd1c341a65109ee613784bff046c04423f Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Thu, 10 Apr 2008 14:00:40 +0000 Subject: [PATCH] Avoid conditional function definition (for optimizers) git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@385 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 4c484f9c..2ef891ce 100644 --- a/index.php +++ b/index.php @@ -19,6 +19,7 @@ include "./design.inc.php"; include "./abstraction.inc.php"; include "./auth.inc.php"; include "./connect.inc.php"; +include "./editing.inc.php"; if (isset($_GET["dump"])) { include "./dump.inc.php"; @@ -49,7 +50,6 @@ if (isset($_GET["dump"])) { } elseif (isset($_GET["privileges"])) { include "./privileges.inc.php"; } else { // uses CSRF token - include "./editing.inc.php"; $error = ""; if ($_POST) { if (!in_array($_POST["token"], (array) $TOKENS)) {