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:
authorMarc Delisle <marc@infomarc.info>2007-05-14 20:03:38 +0400
committerMarc Delisle <marc@infomarc.info>2007-05-14 20:03:38 +0400
commit595764700eaf0249c7d2bdc7db654cb0f861cc5b (patch)
treeadbde12a18cfc43a926a6dd6cfe3c6c396e47e21 /db_export.php
parentecd34fef273c382d0f1fae5a7da05586f56bbeac (diff)
unneeded $strDatabaseNoTable, use $strNoTablesFound instead
Diffstat (limited to 'db_export.php')
-rw-r--r--db_export.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_export.php b/db_export.php
index 75305e0556..e8c4de49b8 100644
--- a/db_export.php
+++ b/db_export.php
@@ -27,7 +27,7 @@ $export_page_title = $strViewDumpDB;
// exit if no tables in db found
if ($num_tables < 1) {
- echo $strDatabaseNoTable;
+ echo '<div class="warning">' . $strNoTablesFound . '</div>';
require './libraries/footer.inc.php';
exit;
} // end if