diff options
author | ivan <ivan> | 2010-03-12 03:38:48 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-03-12 03:38:48 +0000 |
commit | 168fa0b2021c4addc13d772f1c168574bce4ccfb (patch) | |
tree | 924869df32d4e9facb6f38956ec3ff952223dde4 | |
parent | 4bd9d3d9dc5325f0d7bd498e457140b15d01866c (diff) |
backport tyop fix from head
-rw-r--r-- | httemplate/elements/location.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/location.html b/httemplate/elements/location.html index 4750b687d..0ec6c04e0 100644 --- a/httemplate/elements/location.html +++ b/httemplate/elements/location.html @@ -123,7 +123,7 @@ $object->set($pre.'state', $statedefault ) || $object->get($pre.'country') ne $countrydefault; my @style = (); -push @style, 'background-color: #dddddd"' if $disabled; +push @style, 'background-color: #dddddd' if $disabled; my @address2_label_style = (); push @address2_label_style, 'visibility:hidden' |