From 71857792625c200b6f04397b8ac46db4ee15fa13 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 Sep 2002 07:03:33 +0000 Subject: [PATCH] Fixed name in popup javascript window --- lib/javascript.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/javascript.php b/lib/javascript.php index 8d74d4eb12..44d84bbe1e 100644 --- a/lib/javascript.php +++ b/lib/javascript.php @@ -8,7 +8,7 @@ function fillmessagebox(text) { function openpopup(url,name,height,width) { fullurl = "wwwroot ?>" + url; options = "menubar=0,location=0,scrollbars,resizable,width="+width+",height="+height; -windowobj = window.open(fullurl,"name", options); +windowobj = window.open(fullurl,name, options); windowobj.focus(); } -- 2.39.5