diff options
author | lpsolit%gmail.com <> | 2005-12-30 07:47:51 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-12-30 07:47:51 +0100 |
commit | 6de0297718b7170f40c30bf536bbb3d8c32e2315 (patch) | |
tree | 71f47fc35b94f357d73c421040379b0997140a50 | |
parent | 782a89bc8bd905fa5ac3532c984ad2b4b149e8fd (diff) | |
download | bugzilla-6de0297718b7170f40c30bf536bbb3d8c32e2315.tar.gz bugzilla-6de0297718b7170f40c30bf536bbb3d8c32e2315.tar.xz |
Bug 297652: Javascript strict warning in query.cgi when the format chosen is "advanced" - Patch by Florian Quèze <f.qu@queze.net> r=wicked a=justdave
-rw-r--r-- | template/en/default/search/form.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl index 7d061b2ae..daef7e58d 100644 --- a/template/en/default/search/form.html.tmpl +++ b/template/en/default/search/form.html.tmpl @@ -84,7 +84,7 @@ var tms = new Array(); */ function doOnSelectProduct(selectmode) { var f = document.forms[queryform]; - milestone = (typeof(f.target_milestone) == "undefined" ? + var milestone = (typeof(f.target_milestone) == "undefined" ? null : f.target_milestone); if (selectmode == 0) { if (useclassification) { |