From 159c0901b106e263c06f7a1877df5197ca9beae1 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 11 Apr 2011 16:12:48 +0000 Subject: [PATCH] fix javascript for great justice --- httemplate/misc/order_pkg.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.11.0