Incorrect message for validate links (bug #1346608).
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$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>
|
||||
* themes/dakrblue_orange/theme_right.css.php, css/phpmyadmin.css.php:
|
||||
fixed different font sizes
|
||||
|
@@ -2148,12 +2148,12 @@ window.parent.updateTableTitle( '<?php echo $uni_tbl; ?>', '<?php echo PMA_jsFor
|
||||
. '&validatequery=';
|
||||
if (!empty($GLOBALS['validatequery'])) {
|
||||
$validate_link .= '0';
|
||||
$message = $GLOBALS['strNoValidateSQL'] ;
|
||||
$validate_message = $GLOBALS['strNoValidateSQL'] ;
|
||||
} else {
|
||||
$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 {
|
||||
$validate_link = '';
|
||||
} //validator
|
||||
|
Reference in New Issue
Block a user