diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-20 10:17:14 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-20 10:17:14 -0800 |
commit | 1ca022464a87258357ab172bbdf4e91cce849091 (patch) | |
tree | c4cdb8b2f22274d241965d14b7d4064b28959a0d /plugins | |
parent | 46c5a5281086106370bde6405d48c200c8eb299b (diff) |
Fix double-escaped HTML in mapstraction notice popups
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Mapstraction/MapstractionPlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Mapstraction/MapstractionPlugin.php b/plugins/Mapstraction/MapstractionPlugin.php index d31106864..daedaf40d 100644 --- a/plugins/Mapstraction/MapstractionPlugin.php +++ b/plugins/Mapstraction/MapstractionPlugin.php @@ -226,8 +226,8 @@ class MapstractionPlugin extends Plugin $arr = $act->twitterStatusArray($notice, true); $arr['url'] = $notice->bestUrl(); - $arr['html'] = htmlspecialchars($notice->rendered); - $arr['source'] = htmlspecialchars($arr['source']); + $arr['html'] = $notice->rendered; + $arr['source'] = $arr['source']; if (!empty($notice->reply_to)) { $reply_to = Notice::staticGet('id', $notice->reply_to); |