diff options
author | Mario <mario@mariovavti.com> | 2017-12-03 12:31:41 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2017-12-03 12:31:41 +0100 |
commit | dae0107dd0e1caa460866b5debdc6de912bfd819 (patch) | |
tree | 96ec8614c5629d49b7d78186a92d44eb9d31b98c /Zotlabs/Lib/Apps.php | |
parent | dd2c4c37ff03eef6470ef0364217b2c6208c38c0 (diff) | |
download | volse-hubzilla-dae0107dd0e1caa460866b5debdc6de912bfd819.tar.gz volse-hubzilla-dae0107dd0e1caa460866b5debdc6de912bfd819.tar.bz2 volse-hubzilla-dae0107dd0e1caa460866b5debdc6de912bfd819.zip |
fix some pubstream on/off weirdness
Diffstat (limited to 'Zotlabs/Lib/Apps.php')
-rw-r--r-- | Zotlabs/Lib/Apps.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index 9271cee85..457b85b62 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -352,7 +352,7 @@ class Apps { break; default: if($config) - $unset = ((get_config('system', $require[0]) == $require[1]) ? false : true); + $unset = ((get_config('system', $require[0]) === $require[1]) ? false : true); else $unset = ((local_channel() && feature_enabled(local_channel(),$require)) ? false : true); if($unset) |