]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove url regex
authorEvan Prodromou <evan@prodromou.name>
Thu, 29 May 2008 18:13:21 +0000 (14:13 -0400)
committerEvan Prodromou <evan@prodromou.name>
Thu, 29 May 2008 18:13:21 +0000 (14:13 -0400)
darcs-hash:20080529181321-84dde-ed6ab6e839787cacc82681617b152106150839aa.gz

lib/util.php

index 20c8834c1b7537ea8aa27a58eded5cf0a1b68f79..18b11f18beb7bad47af58c997c484dacaa6dcbd7 100644 (file)
@@ -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('/'.URL_REGEX.'/', '<a href="\\0" class="extlink">\\0</a>', $r);
        # XXX: # tags
        # XXX: machine tags
        return $r;