diff options
author | redmatrix <mike@macgirvin.com> | 2016-09-04 21:09:00 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-09-04 21:09:00 -0700 |
commit | 483952eb784b011994a04e020a959ba8f786ea92 (patch) | |
tree | d8d45039d5754f34c566d73074fc47037672d804 | |
parent | 5fa43c41ebe8df7aed51ad558e31523dc1417731 (diff) | |
download | volse-hubzilla-483952eb784b011994a04e020a959ba8f786ea92.tar.gz volse-hubzilla-483952eb784b011994a04e020a959ba8f786ea92.tar.bz2 volse-hubzilla-483952eb784b011994a04e020a959ba8f786ea92.zip |
remove chatroom suggestions for the time being, until somebody decides it's worth fixing and rolls up their sleeves and does it. See the notes. There's a lot of useful technology involved and some valid use cases so we won't throw the code away. There's a lot of stuff in here worth saving. We just need to spend a bit more time working through the nitty-gritty bits.
-rw-r--r-- | include/widgets.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/widgets.php b/include/widgets.php index 6b3afecf2..0b3a0d108 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -996,6 +996,14 @@ function widget_suggestedchats($arr) { if(! feature_enabled(App::$profile['profile_uid'],'ajaxchat')) return ''; + // There are reports that this tool does not ever remove chatrooms on dead sites, + // and also will happily link to private chats which you cannot enter. + // For those reasons, it will be disabled until somebody decides it's worth + // fixing and comes up with a plan for doing so. + + return ''; + + // probably should restrict this to your friends, but then the widget will only work // if you are logged in locally. |