Merge remote-tracking branch 'origin/QA_4_2' into QA_4_2

This commit is contained in:
Weblate 2014-11-04 18:35:24 +01:00
commit f04b5cf6fc
2 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog
4.2.12.0 (not yet released)
- bug #4574 Blank/white page when JavaScript disabled
- bug #4577 Multi row actions cause full page reloads
- bug ReferenceError: targeurl is not defined
4.2.11.0 (2014-10-31)
- bug ReferenceError: Table_onover is not defined

View File

@ -204,9 +204,9 @@ var PMA_querywindow = (function ($, window) {
href != PMA_commonParams.get('pma_absolute_uri') + url
) {
if (PMA_commonParams.get('safari_browser')) {
querywindow.location.href = targeturl;
querywindow.location.href = url;
} else {
querywindow.location.replace(targeturl);
querywindow.location.replace(url);
}
querywindow.focus();
}