diff options
Diffstat (limited to 'mod/mood.php')
-rwxr-xr-x | mod/mood.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/mood.php b/mod/mood.php index e6f4760e0..4fe1ceb59 100755 --- a/mod/mood.php +++ b/mod/mood.php @@ -7,10 +7,10 @@ require_once('include/items.php'); function mood_init(&$a) { - if(! local_user()) + if(! local_channel()) return; - $uid = local_user(); + $uid = local_channel(); $channel = $a->get_channel(); $verb = notags(trim($_GET['verb'])); @@ -108,7 +108,7 @@ function mood_init(&$a) { function mood_content(&$a) { - if(! local_user()) { + if(! local_channel()) { notice( t('Permission denied.') . EOL); return; } |