From: timeless%mozdev.org <> Date: Mon, 2 Aug 2004 11:42:05 +0000 (+0000) Subject: Bug 253583 Warning: assignment to undeclared variable assigned_to X-Git-Tag: bugzilla-2.19.1~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=610b44eb41ad6e890d5e9dcd090e4bd9549b0fbc;p=thirdparty%2Fbugzilla.git Bug 253583 Warning: assignment to undeclared variable assigned_to patch by mcsmurf@gmx.de r=vladd a=justdave --- diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index 3abf752686..3364649e8f 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/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;