From: jakubvrana Date: Wed, 3 Jun 2009 09:17:20 +0000 (+0000) Subject: Separate echo X-Git-Tag: v3.0.0~881 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=08755184e2910275d99ec4f9c893dde111fda9e7;p=adminer.git Separate echo git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@644 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- diff --git a/create.inc.php b/create.inc.php index 11cff693..82f933d4 100644 --- a/create.inc.php +++ b/create.inc.php @@ -150,7 +150,10 @@ if ($dbh->server_info >= 5.1) { $val) { - echo '\n"; + echo ''; + echo ''; + echo ''; + echo "\n"; } ?> diff --git a/dump.inc.php b/dump.inc.php index 88d3c204..7512aeb0 100644 --- a/dump.inc.php +++ b/dump.inc.php @@ -154,7 +154,8 @@ echo "" . lang('Data') . "" . lang('Database') . "\n"; + echo "\n"; + echo "\n"; foreach (get_databases() as $db) { if ($db != "information_schema" || $dbh->server_info < 5) { echo '\n"; @@ -165,7 +166,8 @@ if (!strlen($_GET["db"])) { if (strlen($_GET["db"])) { $checked = (strlen($_GET["dump"]) ? "" : " checked='checked'"); - echo "
\n"; + echo "
\n"; + echo ""; echo ""; echo ""; echo "\n"; diff --git a/index.php b/index.php index 8fdd2fff..84696fd9 100644 --- a/index.php +++ b/index.php @@ -50,9 +50,9 @@ include "./include/version.inc.php"; include "./include/functions.inc.php"; include "./include/lang.inc.php"; include "./lang/$LANG.inc.php"; +include "./include/design.inc.php"; include "./include/pdo.inc.php"; include "./include/mysql.inc.php"; -include "./include/design.inc.php"; include "./include/auth.inc.php"; include "./include/connect.inc.php"; include "./include/editing.inc.php";