diff options
author | friendica <info@friendica.com> | 2012-11-03 16:51:29 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-03 16:51:29 -0700 |
commit | f55636aeb61e0bd8e1a5770715d117f4c6bcaf0c (patch) | |
tree | f643b605ae2f0ec840287d521130c40e12a6f366 /include/conversation.php | |
parent | ece59b778ecbe2eefa4db4e5f6bac90a4d4ab4e2 (diff) | |
download | volse-hubzilla-f55636aeb61e0bd8e1a5770715d117f4c6bcaf0c.tar.gz volse-hubzilla-f55636aeb61e0bd8e1a5770715d117f4c6bcaf0c.tar.bz2 volse-hubzilla-f55636aeb61e0bd8e1a5770715d117f4c6bcaf0c.zip |
turn off categories feature by default
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/conversation.php b/include/conversation.php index 9a76c9df1..87cc1b737 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1684,6 +1684,8 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) { $jotplugins = ''; $jotnets = ''; + $catsenabled = feature_enabled($x['profile_uid'],'categories'); + call_hooks('jot_tool', $jotplugins); call_hooks('jot_networks', $jotnets); @@ -1712,6 +1714,7 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) { '$shortnoloc' => t('clear location'), '$title' => "", '$placeholdertitle' => t('Set title'), + '$catsenabled' => $catsenabled, '$category' => "", '$placeholdercategory' => t('Categories (comma-separated list)'), '$wait' => t('Please wait'), |