From d73595ecf1f5c5c6b63327b8bae7d205d2d94380 Mon Sep 17 00:00:00 2001 From: "timeless%mozdev.org" Date: Mon, 2 Aug 2004 04:42:05 +0000 Subject: [PATCH] Bug 253583 Warning: assignment to undeclared variable assigned_to patch by mcsmurf@gmx.de r=vladd a=justdave git-svn-id: svn://10.0.0.236/trunk@160206 18797224-902f-48f8-a5cc-f745e15eee43 --- .../bugzilla/template/en/default/bug/create/create.html.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/template/en/default/bug/create/create.html.tmpl b/mozilla/webtools/bugzilla/template/en/default/bug/create/create.html.tmpl index 3abf7526869..3364649e8f5 100644 --- a/mozilla/webtools/bugzilla/template/en/default/bug/create/create.html.tmpl +++ b/mozilla/webtools/bugzilla/template/en/default/bug/create/create.html.tmpl @@ -46,7 +46,7 @@ function set_assign_to() { // Based on the selected component, fill the "Assign To:" field // with the default component owner. var form = document.Create; - assigned_to = form.assigned_to.value + var assigned_to = form.assigned_to.value; var index = -1; if (form.component.type == 'select-one') { index = form.component.selectedIndex;