Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRouslan Placella <rouslan@placella.com>2012-06-02 16:43:09 +0400
committerRouslan Placella <rouslan@placella.com>2012-06-11 17:06:04 +0400
commiteb98110541b3b6e8436e004f67f077ad7126af43 (patch)
treedb6c25287e2e1426d788fc09d5d8a389136d3b34 /db_export.php
parent4d83b7f147bb13bc46586dd13d9a18a1ac5c4b39 (diff)
Dropped footer.inc.php
Diffstat (limited to 'db_export.php')
-rw-r--r--db_export.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/db_export.php b/db_export.php
index a7d2bb162c..00f518f22c 100644
--- a/db_export.php
+++ b/db_export.php
@@ -31,7 +31,6 @@ $export_page_title = __('View dump (schema) of database');
// exit if no tables in db found
if ($num_tables < 1) {
PMA_Message::error(__('No tables found in database.'))->display();
- include 'libraries/footer.inc.php';
exit;
} // end if
@@ -84,8 +83,4 @@ $multi_values .= '</select></div>';
$export_type = 'database';
require_once 'libraries/display_export.lib.php';
-/**
- * Displays the footer
- */
-require 'libraries/footer.inc.php';
?>