diff options
author | ivan <ivan> | 2011-04-11 16:12:48 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-04-11 16:12:48 +0000 |
commit | 159c0901b106e263c06f7a1877df5197ca9beae1 (patch) | |
tree | a933c1bb5c03c48a8cb996dfe3a7b1edb419cbc2 /httemplate/misc | |
parent | 5d64e4978919b582128d0caa0fcf95badf6f73e9 (diff) |
fix javascript for great justice
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/order_pkg.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/order_pkg.html b/httemplate/misc/order_pkg.html index 6bcd5e5a6..57f1f3b9b 100644 --- a/httemplate/misc/order_pkg.html +++ b/httemplate/misc/order_pkg.html @@ -24,7 +24,7 @@ function standardize_new_location() { var form = document.OrderPkgForm; var loc = form.locationnum; - if (loc.type = 'select-one' && loc.options[loc.selectedIndex].value == -1) { + if (loc.type == 'select-one' && loc.options[loc.selectedIndex].value == -1){ standardize_locations(); } else { form.submit(); |