diff options
author | timeless%mozdev.org <> | 2004-08-02 13:42:05 +0200 |
---|---|---|
committer | timeless%mozdev.org <> | 2004-08-02 13:42:05 +0200 |
commit | 610b44eb41ad6e890d5e9dcd090e4bd9549b0fbc (patch) | |
tree | e31a2ec936c3256c2ec014517fe8cacc5a035a23 /template | |
parent | ec42912dc385fd5bc3c93fd1c6c6001724d8e35d (diff) | |
download | bugzilla-610b44eb41ad6e890d5e9dcd090e4bd9549b0fbc.tar.gz bugzilla-610b44eb41ad6e890d5e9dcd090e4bd9549b0fbc.tar.xz |
Bug 253583 Warning: assignment to undeclared variable assigned_to
patch by mcsmurf@gmx.de r=vladd a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index 3abf75268..3364649e8 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; |