diff options
author | Max Kostikov <max@kostikov.co> | 2019-05-02 11:42:39 +0200 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-05-02 11:42:39 +0200 |
commit | b35961c53cde75b133411882e35c76ef4ffd35f3 (patch) | |
tree | bef05781eacc6dbc67d03899e0dde0257ce58096 | |
parent | 516167c0f8579c8a068b6e52557e7e1109f897ae (diff) | |
parent | 47fba5827bd106f53625b543f30643ca5ba1c16e (diff) | |
download | volse-hubzilla-b35961c53cde75b133411882e35c76ef4ffd35f3.tar.gz volse-hubzilla-b35961c53cde75b133411882e35c76ef4ffd35f3.tar.bz2 volse-hubzilla-b35961c53cde75b133411882e35c76ef4ffd35f3.zip |
Merge branch 'dev' into 'dev'
Add check if threads are enabled globally
See merge request hubzilla/core!1621
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index 7a3a7c0c5..3f1888d30 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -38,7 +38,7 @@ class ThreadItem { $this->data = $data; $this->toplevel = ($this->get_id() == $this->get_data_value('parent')); - $this->threaded = get_config('system','thread_allow',((defined('NOMADIC')) ? false : true)); + $this->threaded = get_config('system','thread_allow'); $observer = \App::get_observer(); |