From 180f0882df651c6cf338f93081d141ca84b8fde3 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Tue, 21 Jun 2011 19:43:45 +0100 Subject: [PATCH] undefined is a keyword, not a string --- js/functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/functions.js b/js/functions.js index f56f6de0a2..c3900f33c4 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1300,7 +1300,7 @@ function PMA_ajaxShowMessage(message, timeout) { * Removes the message shown for an Ajax operation when it's completed */ function PMA_ajaxRemoveMessage($this_msgbox) { - if ($this_msgbox != 'undefined' && $this_msgbox instanceof jQuery) { + if ($this_msgbox != undefined && $this_msgbox instanceof jQuery) { $this_msgbox .stop(true, true) .fadeOut('medium');