diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-09-26 16:32:06 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-09-26 16:32:06 +0200 |
commit | 1353c291e9d6fbe4cdbe8e4911f99d51e1da9198 (patch) | |
tree | 831d3ff59ee980689b437959a9bda6f4ce138e88 /Zotlabs/Module/Oauth.php | |
parent | 9af1b62beef76781e3384a536377d9f8123aab07 (diff) | |
download | volse-hubzilla-1353c291e9d6fbe4cdbe8e4911f99d51e1da9198.tar.gz volse-hubzilla-1353c291e9d6fbe4cdbe8e4911f99d51e1da9198.tar.bz2 volse-hubzilla-1353c291e9d6fbe4cdbe8e4911f99d51e1da9198.zip |
add check for local_channel()
Diffstat (limited to 'Zotlabs/Module/Oauth.php')
-rw-r--r-- | Zotlabs/Module/Oauth.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Zotlabs/Module/Oauth.php b/Zotlabs/Module/Oauth.php index d087ecec4..5aae71ae7 100644 --- a/Zotlabs/Module/Oauth.php +++ b/Zotlabs/Module/Oauth.php @@ -11,6 +11,10 @@ class Oauth extends Controller { function post() { + if(! local_channel()) + return; + + if(! Apps::system_app_installed(local_channel(), 'OAuth Apps Manager')) return; @@ -86,6 +90,9 @@ class Oauth extends Controller { function get() { + if(! local_channel()) + return; + if(! Apps::system_app_installed(local_channel(), 'OAuth Apps Manager')) { //Do not display any associated widgets at this point App::$pdl = ''; |