diff options
author | Zach Copley <zach@status.net> | 2010-05-06 00:44:56 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-05-18 15:15:41 -0700 |
commit | 68634f04969d2d7bcbd1d657c466090990dea501 (patch) | |
tree | ec2f0deec1f6979a0307049bf602d83f877b2524 /classes | |
parent | c78f67aa7367acab5f9156ecf8963e2d5243e400 (diff) |
Add source link attr to statusnet:notice_info element in Atom output for notices
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Notice.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 2c2c87d56..196501279 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1215,8 +1215,14 @@ class Notice extends Memcached_DataObject $noticeInfoAttr = array( 'local_id' => $this->id, // local notice ID (useful to clients for ordering) 'source' => $this->source // the client name (source attribution) - // @todo source source_link - ); + ); + + $ns = $this->getSource(); + if ($ns) { + if (!empty($ns->url)) { + $noticeInfoAttr['source_link'] = htmlentities($ns->url); + } + } if (!empty($cur)) { $noticeInfoAttr['favorited'] = ($cur->hasFave($this)) ? 'true' : 'false'; |