Incorrect message for validate links (bug #1346608).

This commit is contained in:
Michal Čihař
2005-11-03 10:35:35 +00:00
parent 95b99fe543
commit 4be384426b
2 changed files with 7 additions and 3 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2005-11-03 Michal Čihař <michal@cihar.com>
* libraries/common.lib.php: Incorrect message for validate links (bug
#1346608).
2005-11-02 Sebastian Mendel <cybot_tm@users.sourceforge.net> 2005-11-02 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* themes/dakrblue_orange/theme_right.css.php, css/phpmyadmin.css.php: * themes/dakrblue_orange/theme_right.css.php, css/phpmyadmin.css.php:
fixed different font sizes fixed different font sizes

View File

@@ -2148,12 +2148,12 @@ window.parent.updateTableTitle( '<?php echo $uni_tbl; ?>', '<?php echo PMA_jsFor
. '&amp;validatequery='; . '&amp;validatequery=';
if (!empty($GLOBALS['validatequery'])) { if (!empty($GLOBALS['validatequery'])) {
$validate_link .= '0'; $validate_link .= '0';
$message = $GLOBALS['strNoValidateSQL'] ; $validate_message = $GLOBALS['strNoValidateSQL'] ;
} else { } else {
$validate_link .= '1'; $validate_link .= '1';
$message = $GLOBALS['strValidateSQL'] ; $validate_message = $GLOBALS['strValidateSQL'] ;
} }
$validate_link = ' [' . PMA_linkOrButton( $validate_link, $GLOBALS['strRefresh'] ) . ']'; $validate_link = ' [' . PMA_linkOrButton( $validate_link, $validate_message ) . ']';
} else { } else {
$validate_link = ''; $validate_link = '';
} //validator } //validator