48 | | if ( get_option('comment_max_links') && preg_match_all("/<[Aa][^>]*[Hh][Rr][Ee][Ff]=['\"]([^\"'>]+)[^>]*>/", apply_filters('comment_text',$comment), $out) >= get_option('comment_max_links') ) |
49 | | return false; // Check # of external links |
| 48 | // Check # of external links |
| 49 | if ( get_option('comment_max_links') ) { |
| 50 | $links = preg_match_all("/<a[^>]+href=['\"]([^\"'>]+)[^>]*>/i", apply_filters('comment_text',$comment), $out); |
| 51 | if ( 0 != strlen($url) ) |
| 52 | $links += 1; |
| 53 | if ( $links >= get_option('comment_max_links') ) |
| 54 | return false; |
| 55 | } |