From: timeless%mozdev.org <> Date: Mon, 2 Aug 2004 11:54:15 +0000 (+0000) Subject: Bug 253583 Warning: assignment to undeclared variable assigned_to X-Git-Tag: bugzilla-2.18rc3~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=893080c3b84072f5bb6b50021b32b9361a567142;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 571a263edb..274e30ca70 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -45,7 +45,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;