diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-29 14:16:23 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-29 14:16:23 -0400 |
commit | 2acd91f16c83d1e2f59cf0d05d040ea09567dc60 (patch) | |
tree | 310c73708f70d676273a687e31526f4775c0928c /lib/util.php | |
parent | 491960d55a4b14682f0f1ebe66c3ab16e0eee51c (diff) |
bad regex again
darcs-hash:20080529181623-84dde-90c4ce5306cdc9df2696064184aec122083519c8.gz
Diffstat (limited to 'lib/util.php')
-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 83717c66e..881902277 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('q'.URL_REGEX.'q', '<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; |