diff options
author | friendica <info@friendica.com> | 2012-04-15 16:00:07 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-15 16:00:07 -0700 |
commit | 93df525f5c7cf85f106d574c42b26dded1b1cf11 (patch) | |
tree | 6e5506e6805ce462e8ba05552b34e2bac63d9ab6 /include/conversation.php | |
parent | b5c164bf2fee381c0a48e2f1e2e19d52fe8afdf4 (diff) | |
parent | e825a73f1de308b6ae0ae3cc5549263704a14594 (diff) | |
download | volse-hubzilla-93df525f5c7cf85f106d574c42b26dded1b1cf11.tar.gz volse-hubzilla-93df525f5c7cf85f106d574c42b26dded1b1cf11.tar.bz2 volse-hubzilla-93df525f5c7cf85f106d574c42b26dded1b1cf11.zip |
Merge pull request #238 from annando/master
API: Support of the statusnet application
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/conversation.php b/include/conversation.php index 5396a125d..f4a564742 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -626,10 +626,6 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { else $profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $thumb); - - - - $like = ((x($alike,$item['id'])) ? format_like($alike[$item['id']],$alike[$item['id'] . '-l'],'like',$item['id']) : ''); $dislike = ((x($dlike,$item['id'])) ? format_like($dlike[$item['id']],$dlike[$item['id'] . '-l'],'dislike',$item['id']) : ''); @@ -1089,4 +1085,3 @@ function render_location_google($item) { } return $location; } - |