diff options
author | zotlabs <mike@macgirvin.com> | 2018-12-20 11:06:52 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-12-20 11:06:52 -0800 |
commit | 389b4beba47823ebc0549ee8d7c0549c27b73b7a (patch) | |
tree | 667825f93478a14d7dbc29e8cbf27a29000ad5b7 /Zotlabs/Module | |
parent | 7a55dd512a49a8a3c3e7ad1cfec2e42f9825afd1 (diff) | |
download | volse-hubzilla-389b4beba47823ebc0549ee8d7c0549c27b73b7a.tar.gz volse-hubzilla-389b4beba47823ebc0549ee8d7c0549c27b73b7a.tar.bz2 volse-hubzilla-389b4beba47823ebc0549ee8d7c0549c27b73b7a.zip |
like permission issue
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Like.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Like.php b/Zotlabs/Module/Like.php index d19154eb4..142d3b499 100644 --- a/Zotlabs/Module/Like.php +++ b/Zotlabs/Module/Like.php @@ -52,7 +52,7 @@ class Like extends \Zotlabs\Web\Controller { $observer = \App::get_observer(); $interactive = $_REQUEST['interactive']; - if($interactive) { + if((! $observer) || ($interactive)) { $o .= '<h1>' . t('Like/Dislike') . '</h1>'; $o .= EOL . EOL; |