]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix for bug #00019 (Linkified all @ addresses in a message)
authormatthew.gregg <matthew.gregg@gmail.com>
Fri, 20 Jun 2008 18:11:36 +0000 (14:11 -0400)
committermatthew.gregg <matthew.gregg@gmail.com>
Fri, 20 Jun 2008 18:11:36 +0000 (14:11 -0400)
darcs-hash:20080620181136-982e4-ee4bb812b3db0f1d0e0b7961bc9aa6beec74096b.gz

lib/util.php

index 88ddbcc006044f4dd03e0ddaeecf6619d3c45f55..7f9b237249dddd0ec4dcbc3ff37996859eaaee75 100644 (file)
@@ -445,7 +445,7 @@ function common_render_content($text, $notice) {
        $r = htmlspecialchars($text);
        $id = $notice->profile_id;
        $r = preg_replace('@https?://\S+@', '<a href="\0" class="extlink">\0</a>', $r);
-       $r = preg_replace('/(^|\b)@([\w-]+)($|\b)/e', "'\\1@'.common_at_link($id, '\\2').'\\3'", $r);
+       $r = preg_replace('/(^|\s+)@([\w-]+)/e', "'\\1@'.common_at_link($id, '\\2')", $r);
        # XXX: # tags
        # XXX: machine tags
        return $r;