From: Evan Prodromou Date: Thu, 29 May 2008 19:07:43 +0000 (-0400) Subject: move linkifying so URL links come first X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a63208b3dab1a2d1c9b924dabb86be2edc90ebed;p=quix0rs-gnu-social.git move linkifying so URL links come first darcs-hash:20080529190743-84dde-849369c3c48006aaf6fcc523c9a952ea5d5bd999.gz --- diff --git a/lib/util.php b/lib/util.php index 8b977400a7..30bd4d3aec 100644 --- a/lib/util.php +++ b/lib/util.php @@ -354,8 +354,8 @@ define('URL_REGEX', '^|[ \t\r\n])((ftp|http|https|gopher|mailto|news|nntp|telnet function common_render_content($text, $notice) { $r = htmlspecialchars($text); $id = $notice->profile_id; - $r = preg_replace('/(^|\b)@([\w-]+)($|\b)/e', "'\\1@'.common_at_link($id, '\\2').'\\3'", $r); $r = preg_replace('@https?://\S+@', '\0', $r); + $r = preg_replace('/(^|\b)@([\w-]+)($|\b)/e', "'\\1@'.common_at_link($id, '\\2').'\\3'", $r); # XXX: # tags # XXX: machine tags return $r;