Incorrect message for validate links (bug #1346608).
This commit is contained in:
@@ -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
|
||||||
|
@@ -2148,12 +2148,12 @@ window.parent.updateTableTitle( '<?php echo $uni_tbl; ?>', '<?php echo PMA_jsFor
|
|||||||
. '&validatequery=';
|
. '&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
|
||||||
|
Reference in New Issue
Block a user