From 8f475aebcbb3d95dc76b85bd97e5a5e8c5445a38 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 19 Dec 2014 08:04:23 -0500 Subject: [PATCH] bug #4656 Some error popups fade away too quickly Signed-off-by: Marc Delisle --- ChangeLog | 1 + libraries/Error_Handler.class.php | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f3a4c8bb1e..e80352e043 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog - bug Fix initial replication configuration - bug Undefined index central_columnswork - bug #4657 Don't have default blowfish_secret +- bug #4656 Some error popups fade away too quickly 4.3.2.0 (2014-12-12) - bug #4628 PHP error while exporting schema as PDF diff --git a/libraries/Error_Handler.class.php b/libraries/Error_Handler.class.php index e39ebd3587..ad954e1c9a 100644 --- a/libraries/Error_Handler.class.php +++ b/libraries/Error_Handler.class.php @@ -538,8 +538,7 @@ class PMA_Error_Handler //ask user whether to submit errors or not. if (!$response->isAjax()) { // js code to show appropriate msgs, event binding & focusing. - $jsCode = 'PMA_ajaxShowMessage(PMA_messages["phpErrorsFound"], ' - . ' 2000);' + $jsCode = 'PMA_ajaxShowMessage(PMA_messages["phpErrorsFound"]);' . '$("#pma_ignore_errors_popup").bind("click", function() { PMA_ignorePhpErrors() });'