Ticket #11830: link-moderation.patch
| File link-moderation.patch, 763 bytes (added by , 16 years ago) |
|---|
-
comment.php
45 45 if ( 1 == get_option('comment_moderation') ) 46 46 return false; // If moderation is set to manual 47 47 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') )48 if ( get_option('comment_max_links') && preg_match_all("/<a[^>]+href=\\\\?['\"]([^\"'>]+?)\\\\?['\"][^>]*>/i", apply_filters('comment_text',$comment), $out) >= get_option('comment_max_links') ) 49 49 return false; // Check # of external links 50 50 51 51 $mod_keys = trim(get_option('moderation_keys'));