summaryrefslogtreecommitdiff
path: root/httemplate/misc
diff options
context:
space:
mode:
authorivan <ivan>2011-04-11 16:12:48 +0000
committerivan <ivan>2011-04-11 16:12:48 +0000
commit159c0901b106e263c06f7a1877df5197ca9beae1 (patch)
treea933c1bb5c03c48a8cb996dfe3a7b1edb419cbc2 /httemplate/misc
parent5d64e4978919b582128d0caa0fcf95badf6f73e9 (diff)
fix javascript for great justice
Diffstat (limited to 'httemplate/misc')
-rw-r--r--httemplate/misc/order_pkg.html2
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();