summaryrefslogtreecommitdiff
path: root/plugins/Mapstraction
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2009-11-20 10:17:14 -0800
committerBrion Vibber <brion@pobox.com>2009-11-20 10:17:14 -0800
commit1ca022464a87258357ab172bbdf4e91cce849091 (patch)
treec4cdb8b2f22274d241965d14b7d4064b28959a0d /plugins/Mapstraction
parent46c5a5281086106370bde6405d48c200c8eb299b (diff)
Fix double-escaped HTML in mapstraction notice popups
Diffstat (limited to 'plugins/Mapstraction')
-rw-r--r--plugins/Mapstraction/MapstractionPlugin.php4
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);