added a param. to enforce reloading of the left frame after a flush if $cfgShowTooltip is set to 1

This commit is contained in:
Loïc Chapeaux
2001-10-17 14:13:19 +00:00
parent 0f1f461f4b
commit f5c9a8991e
2 changed files with 3 additions and 1 deletions

View File

@@ -11,6 +11,8 @@ $Source$
* index.php3, line 53; lang/*: out-sourced the "no frame" sentence.
* libraries/common.lib.php3: improved compatibility with the old phpMyAdmin
configuration file.
* tbl_properties.php3, line 1243: added a param. to enforce reloading of
the left frame after a flush if $cfgShowTooltip is set to 1.
2001-10-16 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* lang/*: cleanup thanks to Bj<42>rn T. Hallberg - Removed unused strings

View File

@@ -1233,7 +1233,7 @@ else { // MySQL < 3.23.22
<!-- Flushes the table -->
<li>
<a href="sql.php3?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('FLUSH TABLE ' . backquote($table)); ?>&amp;zero_rows=<?php echo urlencode(sprintf($strTableHasBeenFlushed, htmlspecialchars($table))); ?>">
<a href="sql.php3?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('FLUSH TABLE ' . backquote($table)); ?>&amp;zero_rows=<?php echo urlencode(sprintf($strTableHasBeenFlushed, htmlspecialchars($table))); if ($cfgShowTooltip) echo '&amp;reload=1'; ?>">
<?php echo $strFlushTable; ?></a>
<br /><br />
</li>