diff options
author | zotlabs <mike@macgirvin.com> | 2017-09-24 19:45:19 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-09-24 19:45:19 -0700 |
commit | 1650d79862c0e89887ede279a19c8df07fe0d927 (patch) | |
tree | d79456ec287e5627975fa0bba02fb41b148c5030 /include/taxonomy.php | |
parent | e8a888caabe83170ce879d7043fae188cd0fed16 (diff) | |
download | volse-hubzilla-1650d79862c0e89887ede279a19c8df07fe0d927.tar.gz volse-hubzilla-1650d79862c0e89887ede279a19c8df07fe0d927.tar.bz2 volse-hubzilla-1650d79862c0e89887ede279a19c8df07fe0d927.zip |
tagging changes - provides ability to mention a forum by using !forumname as well as the traditional red style (@forumname+). This should probably not be advertised on a wide scale until after a critical mass of sites have updated to a version containing these changes. This adds yet another option type to the ACL module which probably needs refactoring soon since it is turning into option type spaghetti.
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r-- | include/taxonomy.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php index 36e05b008..23acaa24d 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -134,6 +134,8 @@ function format_term_for_display($term) { $s = ''; if(($term['ttype'] == TERM_HASHTAG) || ($term['ttype'] == TERM_COMMUNITYTAG)) $s .= '#'; + elseif($term['ttype'] == TERM_FORUM) + $s .= '!'; elseif($term['ttype'] == TERM_MENTION) $s .= '@'; else |