diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-29 14:15:49 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-29 14:15:49 -0400 |
commit | 491960d55a4b14682f0f1ebe66c3ab16e0eee51c (patch) | |
tree | 37c519806e9de7346ab48b5a1379b1aba2f43778 /lib | |
parent | 792eb9ede21edb5ecbff93cbf0d8dd6f44bcd93e (diff) |
use q's for regex delimiter
darcs-hash:20080529181549-84dde-bd4ce6c6101268a95aa95a8727c7aaa96f96cac3.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 18b11f18b..83717c66e 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.'/', '<a href="\\0" class="extlink">\\0</a>', $r); + $r = preg_replace('q'.URL_REGEX.'q', '<a href="\\0" class="extlink">\\0</a>', $r); # XXX: # tags # XXX: machine tags return $r; |