diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2012-07-05 16:10:12 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2012-07-05 16:10:12 -0700 |
| commit | 17093ed856d01f930b32a709b225c568692fec23 (patch) | |
| tree | da4b25930f3e1fe0d832739ef9739a5201d06f16 | |
| parent | ff8ed2c1714b76a3c2305b8b7e02c6a73d08f140 (diff) | |
fix escaping in coordinate links
| -rw-r--r-- | httemplate/elements/coord-links.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/elements/coord-links.html b/httemplate/elements/coord-links.html index 81af8120b..60882deed 100644 --- a/httemplate/elements/coord-links.html +++ b/httemplate/elements/coord-links.html @@ -3,7 +3,7 @@ <& /elements/popup_link.html, 'action' => $p. 'view/map.html?'. $query, 'label' => mt('map'), - 'actionlabel' => $name, + 'actionlabel' => uri_escape_utf8($name), 'width' => 763, 'height' => 575, #'color' @@ -13,7 +13,7 @@ <& /elements/popup_link.html, 'action' => $p. "view/directions.html?origin=$origin;". $query, 'label' => mt('directions'), - 'actionlabel' => $name, + 'actionlabel' => uri_escape_utf8($name), 'width' => 763, 'height' => 575, &> |
