summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-05-06 21:36:13 +0000
committerZach Copley <zach@status.net>2010-05-06 21:48:12 +0000
commit869bc32d0d8cd68d75483e33c62d8ea9f1cc8e2c (patch)
tree18470b5554342bea180438854c3be4a0ebe9d7eb /classes
parentee8c9d142251566f87ee0780b5788549cc0a0c12 (diff)
Remove errant double HTML entity encoding in API source attribution
Diffstat (limited to 'classes')
-rw-r--r--classes/Notice.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php
index b3cfb2813..875bcaa02 100644
--- a/classes/Notice.php
+++ b/classes/Notice.php
@@ -1221,7 +1221,7 @@ class Notice extends Memcached_DataObject
$ns = $this->getSource();
if ($ns) {
if (!empty($ns->url)) {
- $noticeInfoAttr['source_link'] = htmlentities($ns->url);
+ $noticeInfoAttr['source_link'] = $ns->url;
}
}