[freeside-commits] branch master updated. 3063fb45f35d0cb5253871a540a8f0a0efa06b5a
Ivan
ivan at 420.am
Thu Jul 5 16:10:12 PDT 2012
The branch, master has been updated
via 3063fb45f35d0cb5253871a540a8f0a0efa06b5a (commit)
from 226ebde26712fb03cb768235038a2d7c4f0a4fbf (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3063fb45f35d0cb5253871a540a8f0a0efa06b5a
Author: Ivan Kohler <ivan at freeside.biz>
Date: Thu Jul 5 16:10:11 2012 -0700
fix escaping in coordinate links
diff --git a/httemplate/elements/coord-links.html b/httemplate/elements/coord-links.html
index 81af812..60882de 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,
&>
-----------------------------------------------------------------------
Summary of changes:
httemplate/elements/coord-links.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list