diff options
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/item.php b/mod/item.php index 3cea8b22c..8298d3dc0 100644 --- a/mod/item.php +++ b/mod/item.php @@ -927,8 +927,8 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) { ); }*/ //$r is set, if someone could be selected - if(count($r)) { - $profile = chanlink_url($r[0]['xchan_url']); + if($r) { + $profile = $r[0]['xchan_url']; $newname = $r[0]['xchan_name']; //add person's id to $inform if(strlen($inform)) @@ -941,7 +941,7 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) { $replaced = true; //create profile link $profile = str_replace(',','%2c',$profile); - $url = chanlink_url($profile); + $url = $profile; $newtag = '@[url=' . $profile . ']' . $newname . '[/url]'; $body = str_replace('@' . $name, $newtag, $body); //append tag to str_tags |