]> git.joonet.de Git - adminer.git/commitdiff
Include export.inc.php in index.php
authorjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Tue, 26 Aug 2008 10:22:58 +0000 (10:22 +0000)
committerjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Tue, 26 Aug 2008 10:22:58 +0000 (10:22 +0000)
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@455 7c3ca157-0c34-0410-bff1-cbf682f78f5c

dump.inc.php
index.php
select.inc.php

index b8d260c26705d04f5d107f20c0086253c905d4b2..8cd29387def55eeb337cdb74ee869f8ee2a0aff6 100644 (file)
@@ -1,6 +1,4 @@
 <?php
-include "./export.inc.php";
-
 function tar_file($filename, $contents) {
        $return = pack("a100a8a8a8a12a12", $filename, 644, 0, 0, decoct(strlen($contents)), decoct(time()));
        $checksum = 8*32; // space for checksum itself
index d783a5da31595415a12d23cbbdc4884a62dc9d1b..d8aef432e3d075b06c9c3d34de414122bea4fe09 100644 (file)
--- a/index.php
+++ b/index.php
@@ -38,6 +38,7 @@ include "./abstraction.inc.php";
 include "./auth.inc.php";
 include "./connect.inc.php";
 include "./editing.inc.php";
+include "./export.inc.php";
 
 if (isset($_GET["download"])) {
        include "./download.inc.php";
index d5681495529632aeb58c181f3f2e7521d7ff563f..4ee849f4d2f0890fec504dfd2178eedc1f363a61 100644 (file)
@@ -1,6 +1,4 @@
 <?php
-include "./export.inc.php";
-
 $table_status = table_status($_GET["select"]);
 $indexes = indexes($_GET["select"]);
 $operators = array("=", "<", ">", "<=", ">=", "!=", "LIKE", "REGEXP", "IN", "IS NULL");