Remove errant double HTML entity encoding in API source attribution

This commit is contained in:
Zach Copley
2010-05-06 21:36:13 +00:00
parent ee8c9d1422
commit 869bc32d0d
3 changed files with 13 additions and 6 deletions

View File

@@ -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;
}
}