diff options
author | zotlabs <mike@macgirvin.com> | 2017-08-30 16:24:26 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-08-30 16:24:26 -0700 |
commit | be097bf415c898c470e85e89cd059e7121517d15 (patch) | |
tree | 21b7340618fc2090af81e688439161a10a0c89dd /include/text.php | |
parent | f1b014b7eb2b44f4609a9e86c6fb0ae1bffd5403 (diff) | |
download | volse-hubzilla-be097bf415c898c470e85e89cd059e7121517d15.tar.gz volse-hubzilla-be097bf415c898c470e85e89cd059e7121517d15.tar.bz2 volse-hubzilla-be097bf415c898c470e85e89cd059e7121517d15.zip |
issue with mentions and xchans with @ or /
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 1919e4b57..ea21e2184 100644 --- a/include/text.php +++ b/include/text.php @@ -2485,7 +2485,7 @@ function handle_tag($a, &$body, &$access_tag, &$str_tags, $profile_uid, $tag, $d if(($t2) && (! $diaspora)) { //get the id - $tagcid = substr($newname,$t2 + 1); + $tagcid = urldecode(substr($newname,$t2 + 1)); if(strrpos($tagcid,' ')) $tagcid = substr($tagcid,0,strrpos($tagcid,' ')); |