From f6e967c7686cbf6381a88709ae50d859c521df20 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 11 Apr 2011 16:12:46 +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 233262aac..17db18714 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