From 311d157207a8331a589ec58a1a2c97d7c6a75f5a Mon Sep 17 00:00:00 2001 From: Douglas Medrano Chura Date: Mon, 29 Aug 2011 17:24:11 -0400 Subject: [PATCH] BUG 7492 Fix loadPage() function in gulliver/js/common/core/common.js The problem was solved changed the code source --- gulliver/js/common/core/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulliver/js/common/core/common.js b/gulliver/js/common/core/common.js index 3a9e8b518..75d13b9a8 100755 --- a/gulliver/js/common/core/common.js +++ b/gulliver/js/common/core/common.js @@ -707,7 +707,7 @@ function showHideSearch(id,aElement,openText,closeText) * and execute the javascript node that it contains. */ function loadPage ( url, x, y , visibility , div ) { - visibility = typeof(visibility)==='udefined'?'hidden':visibility; + visibility = typeof(visibility)==='undefined'?'hidden':visibility; var r = new leimnud.module.rpc.xmlhttp({url:url}); r.callback=leimnud.closure({Function:function(rpc,div){ if (typeof(div)==='undefined') div=createDiv('');