diff options
author | Mario <mario@mariovavti.com> | 2020-12-18 13:26:51 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-12-18 13:26:51 +0000 |
commit | 8640e6d1df1004191a1cac9a2d894c73aa06f84a (patch) | |
tree | eb67e4be49b01c3f62f470f67c29d150a748a009 /include/items.php | |
parent | 801583fd072e8ebe06fa6aeb97d9dd78785a6f39 (diff) | |
download | volse-hubzilla-8640e6d1df1004191a1cac9a2d894c73aa06f84a.tar.gz volse-hubzilla-8640e6d1df1004191a1cac9a2d894c73aa06f84a.tar.bz2 volse-hubzilla-8640e6d1df1004191a1cac9a2d894c73aa06f84a.zip |
deprecate ! and !! forum tags
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/items.php b/include/items.php index bcdc6c687..8537c3299 100755 --- a/include/items.php +++ b/include/items.php @@ -2813,7 +2813,7 @@ function tag_deliver($uid, $item_id) { // standard forum tagging sequence !forumname - +/* $forumpattern = '/\!\!?\[[uz]rl\=([^\]]*?)\]((?:.(?!\[[uz]rl\=))*?)\[\/[uz]rl\]/'; $forumpattern2 = '/\[[uz]rl\=([^\]]*?)\]\!((?:.(?!\[[uz]rl\=))*?)\[\/[uz]rl\]/'; @@ -2847,6 +2847,8 @@ function tag_deliver($uid, $item_id) { } } +*/ + if(! ($tagged || $plustagged)) { logger('Mention was in a reshare or exceeded max_tagged_forums - ignoring'); continue; @@ -3076,7 +3078,7 @@ function tgroup_check($uid, $item) { $body = preg_replace('/\[share(.*?)\[\/share\]/','',$item['body']); - +/* $forumpattern = '/\!\!?\[zrl\=([^\]]*?)\]((?:.(?!\[zrl\=))*?)\[\/zrl\]/'; $forumpattern2 = '/\[zrl\=([^\]]*?)\]\!((?:.(?!\[zrl\=))*?)\[\/zrl\]/'; @@ -3111,7 +3113,7 @@ function tgroup_check($uid, $item) { } } } - +*/ if(! $found) { logger('tgroup_check: mention was in a reshare or exceeded max_tagged_forums - ignoring'); continue; @@ -4805,7 +4807,7 @@ function set_linkified_perms($linkified, &$str_contact_allow, &$str_group_allow, elseif(strpos($access_tag,'gid:') === 0) { $str_group_allow .= '<' . substr($access_tag,4) . '>'; $access_tag = ''; - $private = 2; + $private = 1; } } } |