This commit is contained in:
Marc Delisle 2014-01-07 06:37:07 -05:00
commit e6a9435c57

View File

@ -321,12 +321,12 @@ $response->addHTML(
)
);
if (! (isset($db_is_system_schema) && $db_is_information_schema)) {
if (! (isset($db_is_system_schema) && $db_is_system_schema)) {
$truncate_table_url_params = array();
$drop_table_url_params = array();
if (! $tbl_is_view
&& ! (isset($db_is_system_schema) && $db_is_information_schema)
&& ! (isset($db_is_system_schema) && $db_is_system_schema)
) {
$this_sql_query = 'TRUNCATE TABLE '
. PMA_Util::backquote($GLOBALS['table']);
@ -343,7 +343,7 @@ if (! (isset($db_is_system_schema) && $db_is_information_schema)) {
)
);
}
if (! (isset($db_is_system_schema) && $db_is_information_schema)) {
if (! (isset($db_is_system_schema) && $db_is_system_schema)) {
$this_sql_query = 'DROP TABLE '
. PMA_Util::backquote($GLOBALS['table']);
$drop_table_url_params = array_merge(