Merge remote-tracking branch 'origin/QA_3_5' into QA_3_5

This commit is contained in:
Michal Čihař 2012-04-22 17:49:25 +02:00
commit 160f762e88

View File

@ -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']))
);
}