diff options
author | friendica <info@friendica.com> | 2014-04-12 03:31:24 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-04-12 03:31:24 -0700 |
commit | 567b5d053dff7e3f862912fd7a2a9c3852060b5b (patch) | |
tree | dd0c4a33c16ae12e79b64648c621bdb161f54571 /mod/item.php | |
parent | 71929c6caa1d4fc07c6b932c5f7797ff7000d9a4 (diff) | |
download | volse-hubzilla-567b5d053dff7e3f862912fd7a2a9c3852060b5b.tar.gz volse-hubzilla-567b5d053dff7e3f862912fd7a2a9c3852060b5b.tar.bz2 volse-hubzilla-567b5d053dff7e3f862912fd7a2a9c3852060b5b.zip |
handle new tag declarations
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index 00ea4c61d..a63d368f8 100644 --- a/mod/item.php +++ b/mod/item.php @@ -958,7 +958,7 @@ function handle_tag($a, &$body, &$access_tag, &$str_tags, $profile_uid, $tag) { $forum = false; - if(substr($newname,-1,1)) === '+') { + if(substr($newname,-1,1) === '+') { $forum = true; $newname = substr($newname,0,-1); } |