From b29b9866aa86c30b5514e3a0daa0c631808da74e Mon Sep 17 00:00:00 2001 From: stan Date: Sun, 16 Oct 2005 21:09:56 +0000 Subject: [PATCH] Bug 176 - Fixed misc JavaScript error. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1505 e3e1d417-86f3-4887-817a-d78f3d33393f --- web/zm_html_view_event.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/zm_html_view_event.php b/web/zm_html_view_event.php index 2c6523229..4261180d8 100644 --- a/web/zm_html_view_event.php +++ b/web/zm_html_view_event.php @@ -119,7 +119,7 @@ function closeWindow() } function newWindow(Url,Name,Width,Height) { - var Name = window.open(Url,Name,"resizable,width="+Width+",height="+Height); + var Win = window.open(Url,Name,"resizable,width="+Width+",height="+Height); }