#8627 closed defect (bug) (fixed)
Emoticons count as links in comments
Reported by: | mtdewvirus | Owned by: | tott |
---|---|---|---|
Milestone: | 2.7.1 | Priority: | normal |
Severity: | normal | Version: | 2.7 |
Component: | Comments | Keywords: | comment moderation link emoticon, has-patch, needs-testing |
Focuses: | Cc: |
Description
If "Convert emoticons like :-) and :-P to graphics on display" is enabled on the blog r9782 doesn't work as intended.
Each emoticon gets counted as a link in the comment (because the img has been inserted) and many comments are held in moderation that shouldn't be.
Change History (8)
#4
@
16 years ago
Fix: Change the regular expression to this:
|(href\t*?=\t*?['\"]?)(https?:)?//|i
Eliminate that center question mark. If we're applying the comment_text filter first, then any unlinked http uris will have been autolinked already, meaning that the href= will exist around them. Making it not necessary for it to be optional.
This will also eliminate the false positive on an img src="http:whatever"
#6
@
16 years ago
- Keywords has-patch needs-testing added
added a revised version of the original patch to #7821 and tested against the current trunk. none of the issues appears.
Two workarounds for right now:
1-to increase the number of links a comment can have (wp-admin/options-discussion.php)
2-to deactivte the converting of emoticons like :-) and :-P to graphics(/wp-admin/options-writing.php)