forgot to add the self exclusion

This commit is contained in:
friendica 2015-02-04 18:31:12 -08:00
parent 24355430a8
commit 5a0ccbfcf3

View File

@ -936,17 +936,19 @@ function widget_rating($arr) {
} }
} }
$self = false;
if(local_channel()) { if(local_channel()) {
$channel = $a->get_channel(); $channel = $a->get_channel();
if($hash == $channel['channel_hash']) if($hash == $channel['channel_hash'])
return; $self = true;
head_add_js('ratings.js'); head_add_js('ratings.js');
} }
if(($remote) || (local_channel())) { if((($remote) || (local_channel())) && (! $self)) {
$o = '<div class="widget rateme">'; $o = '<div class="widget rateme">';
if($remote) if($remote)
$o .= '<a class="rateme" href="' . $url . '"><i class="icon-pencil"></i> ' . t('Rate Me') . '</a>'; $o .= '<a class="rateme" href="' . $url . '"><i class="icon-pencil"></i> ' . t('Rate Me') . '</a>';