From: Evan Prodromou Date: Thu, 29 May 2008 18:15:49 +0000 (-0400) Subject: use q's for regex delimiter X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=491960d55a4b14682f0f1ebe66c3ab16e0eee51c;p=quix0rs-gnu-social.git use q's for regex delimiter darcs-hash:20080529181549-84dde-bd4ce6c6101268a95aa95a8727c7aaa96f96cac3.gz --- diff --git a/lib/util.php b/lib/util.php index 18b11f18be..83717c66ee 100644 --- a/lib/util.php +++ b/lib/util.php @@ -355,7 +355,7 @@ function common_render_content($text, $notice) { $r = htmlspecialchars($text); $id = $notice->profile_id; $r = preg_replace('/(^|\s)@([\w-]+)($|\s)/e', "'\\1@'.common_at_link($id, '\\2').'\\3'", $r); -# $r = preg_replace('/'.URL_REGEX.'/', '\\0', $r); + $r = preg_replace('q'.URL_REGEX.'q', '\\0', $r); # XXX: # tags # XXX: machine tags return $r;