diff --git a/db_structure.php b/db_structure.php index 13d343908b..43fa4011f4 100644 --- a/db_structure.php +++ b/db_structure.php @@ -325,7 +325,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(' ', ' ', htmlspecialchars($each_table['TABLE_NAME'])) ); }