Use word fixes all the time.
git-svn-id: https://develop.svn.wordpress.org/trunk@1118 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
271fd62c61
commit
59010e399d
|
@ -87,27 +87,25 @@ function sanitize_title($title) {
|
|||
return $title;
|
||||
}
|
||||
|
||||
function convert_chars($content, $flag='obsolete attribute left there for backwards compatibility') { // html/unicode entities output
|
||||
function convert_chars($content, $flag='obsolete attribute left there for backwards compatibility') {
|
||||
// html/unicode entities output
|
||||
global $wp_htmltrans, $wp_htmltranswinuni;
|
||||
|
||||
// removes metadata tags
|
||||
$content = preg_replace('/<title>(.+?)<\/title>/','',$content);
|
||||
$content = preg_replace('/<category>(.+?)<\/category>/','',$content);
|
||||
|
||||
// converts lone & characters into & (a.k.a. &)
|
||||
$content = preg_replace('/&[^#](?![a-z]*;)/ie', '"&".substr("\0",1)', $content);
|
||||
$content = strtr($content, $wp_htmltranswinuni);
|
||||
if (get_settings('use_htmltrans')) {
|
||||
// converts lone & characters into & (a.k.a. &)
|
||||
$content = preg_replace('/&[^#](?![a-z]*;)/ie', '"&".substr("\0",1)', $content);
|
||||
// converts HTML-entities to their display values in order to convert them again later
|
||||
$content = preg_replace('/['.chr(127).'-'.chr(255).']/e', '"&#".ord(\'\0\').";"', $content );
|
||||
$content = strtr($content, $wp_htmltrans);
|
||||
// now converting: Windows CP1252 => Unicode (valid HTML)
|
||||
// (if you've ever pasted text from MSWord, you'll understand)
|
||||
$content = strtr($content, $wp_htmltranswinuni);
|
||||
}
|
||||
|
||||
// you can delete these 2 lines if you don't like <br /> and <hr />
|
||||
$content = str_replace("<br>","<br />",$content);
|
||||
$content = str_replace("<hr>","<hr />",$content);
|
||||
$content = str_replace('<br>', '<br />',$content);
|
||||
$content = str_replace('<hr>', '<hr />',$content);
|
||||
|
||||
return $content;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue