diff options
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 64a23e7fb..126f8b6a1 100644 --- a/mod/item.php +++ b/mod/item.php @@ -147,10 +147,10 @@ function item_post(&$a) { } } if($profile) { - $profile = str_replace(',','%2c',$profile); $body = str_replace($name,'[url=' . $profile . ']' . $name . '[/url]', $body); if(strlen($str_tags)) $str_tags .= ','; + $profile = str_replace(',','%2c',$profile); $str_tags .= '[url=' . $profile . ']' . $name . '[/url]'; } } |