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:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2007-10-17 16:14:19 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-10-17 16:14:19 +0400
commit085a7c8f2245050a0dda8fb55da514c0fbcc9148 (patch)
tree916ffc3fd727a2a9b37dffb6ad4aac9f8d74ffd3 /db_export.php
parent06b2fea3e35a1eec21fabcfb1ab483680b782a35 (diff)
make use of PMA_Message
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 bb9b0d353a..30c84cdb0e 100644
--- a/db_export.php
+++ b/db_export.php
@@ -29,7 +29,7 @@ $export_page_title = $strViewDumpDB;
// exit if no tables in db found
if ($num_tables < 1) {
- echo '<div class="warning">' . $strNoTablesFound . '</div>';
+ PMA_Message::error('strNoTablesFound')->display();
require './libraries/footer.inc.php';
exit;
} // end if