diff options
| author | ivan <ivan> | 2011-04-11 16:12:46 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2011-04-11 16:12:46 +0000 | 
| commit | f6e967c7686cbf6381a88709ae50d859c521df20 (patch) | |
| tree | bf361889f542fb415ac346f037adcd488fef3fc2 | |
| parent | 8133d1b51eb321a9bac095984d1faf69fcfa024a (diff) | |
fix javascript for great justice
| -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 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();  | 
