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>2012-04-22 13:51:10 +0400
committerMarc Delisle <marc@infomarc.info>2012-04-22 13:51:10 +0400
commitbdd4fbb9f944788eebe53dbed535d698cb0d7b37 (patch)
treec24dac8104df97643e7496fe1acb88bae1c917f7 /db_structure.php
parent7083dd0c93aef72646e4788c17007fe6ec44610b (diff)
parent66c10144f35f5b955e5aa698c8df909afdcb6002 (diff)
Merge branch 'QA_3_5'
Diffstat (limited to 'db_structure.php')
-rw-r--r--db_structure.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_structure.php b/db_structure.php
index d2035abc20..b032ea9761 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -382,7 +382,7 @@ foreach ($tables as $keyname => $each_table) {
. (($table_is_view || $each_table['ENGINE'] == null) ? 'VIEW' : 'TABLE')
. ' ' . PMA_backquote($each_table['TABLE_NAME']);
$drop_message = sprintf(
- $table_is_view ? __('View %s has been dropped') : __('Table %s has been dropped'),
+ ($table_is_view || $each_table['ENGINE'] == null)? __('View %s has been dropped') : __('Table %s has been dropped'),
str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME']))
);
}