aboutsummaryrefslogtreecommitdiffstats
path: root/mod/rate.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-02-14 21:57:47 -0800
committerfriendica <info@friendica.com>2015-02-14 21:57:47 -0800
commit7ad425bbda549c3937c2feeac593bdcd21167019 (patch)
tree5ccb642a2d83f4c0c09f21e7af0e33cf10572c13 /mod/rate.php
parent59828593c14a64cecf7ee5c077da9f918062ed60 (diff)
downloadvolse-hubzilla-7ad425bbda549c3937c2feeac593bdcd21167019.tar.gz
volse-hubzilla-7ad425bbda549c3937c2feeac593bdcd21167019.tar.bz2
volse-hubzilla-7ad425bbda549c3937c2feeac593bdcd21167019.zip
failure to auto update comments if it's your own.
Diffstat (limited to 'mod/rate.php')
-rw-r--r--mod/rate.php13
1 files changed, 8 insertions, 5 deletions
diff --git a/mod/rate.php b/mod/rate.php
index 694b88ddd..cc12dcac9 100644
--- a/mod/rate.php
+++ b/mod/rate.php
@@ -119,12 +119,15 @@ function rate_content(&$a) {
dbesc($channel['channel_hash']),
dbesc($a->data['target'])
);
- if($r)
+ if($r) {
$a->data['xlink'] = $r[0];
-
- $rating_val = $r[0]['xlink_rating'];
- $rating_text = $r[0]['xlink_rating_text'];
-
+ $rating_val = $r[0]['xlink_rating'];
+ $rating_text = $r[0]['xlink_rating_text'];
+ }
+ else {
+ $rating_val = 0;
+ $rating_text = '';
+ }
// if unset default to enabled
if($poco_rating === false)