﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
19803,get_previous_posts_link: Capital HTML entity,ounziw,duck_,"get_previous_posts_link (located in wp-includes/link-template.php ) has a regular expression at line 1569

{{{
preg_replace( '/&([^#])(?![a-z]{1,8};)/', '&#038;$1', $label )
}}}

This replaces ''&lArr;'' into ''&#038;lArr;'', hence ''&lArr;'' is not allowed as a linktext. (html entites with capital letter(s) disallowed)


get_next_posts_link (also located in wp-includes/link-template.php ) has a regular expression at line 1498

{{{
preg_replace('/&([^#])(?![a-z]{1,8};)/i', '&#038;$1', $label)
}}}

This does not replace ''&lArr;''

I propose to use

{{{
preg_replace('/&([^#])(?![a-z]{1,8};)/i', '&#038;$1', $label)
}}}

both get_next_posts_link and get_previous_posts_link",defect (bug),closed,normal,3.4,Formatting,3.3.1,minor,fixed,has-patch,
