From e8c3f1dbd294301fb45aa32264ab6d105c390441 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 23 Jan 2008 17:36:28 +0000 Subject: [PATCH] bug #1871164 [GUI] Empty and navigation frame synch. --- ChangeLog | 1 + libraries/tbl_links.inc.php | 1 + 2 files changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index ccfd90f27..3da773308 100644 --- a/ChangeLog +++ b/ChangeLog @@ -42,6 +42,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug #1866041 [interface] Incorrect sorting with AS - bug #1871038 [import] Notice: undefined variable first_sql_delimiter - bug #1873110 [export] Problem exporting with a LIMIT clause +- bug #1871164 [GUI] Empty and navigation frame synch. 2.11.4.0 (2008-01-12) - bug #1843428 [GUI] Space issue with DROP/DELETE/ALTER TABLE diff --git a/libraries/tbl_links.inc.php b/libraries/tbl_links.inc.php index 790298a52..8e7b85e74 100644 --- a/libraries/tbl_links.inc.php +++ b/libraries/tbl_links.inc.php @@ -87,6 +87,7 @@ if (! $tbl_is_view && ! (isset($db_is_information_schema) && $db_is_information_ $tabs['operation']['text'] = $strOperations; $tabs['empty']['link'] = 'sql.php'; + $tabs['empty']['args']['reload'] = 1; $tabs['empty']['args']['sql_query'] = 'TRUNCATE TABLE ' . PMA_backquote($table); $tabs['empty']['args']['zero_rows'] = sprintf($strTableHasBeenEmptied, htmlspecialchars($table)); $tabs['empty']['attr'] = 'onclick="return confirmLink(this, \'TRUNCATE TABLE ' . PMA_jsFormat($table) . '\')"';