Include export.inc.php in index.php

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@455 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2008-08-26 10:22:58 +00:00
parent 67c48d4645
commit 9d7fd4c60c
3 changed files with 1 additions and 4 deletions

View 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

View file

@ -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";

View 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");