mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-09 07:00:01 +00:00
Fix bug handling ampersands.
git-svn-id: http://svn.automattic.com/wordpress/trunk@740 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3910cf728b
commit
96b3058e9f
@ -62,6 +62,7 @@ $wp_htmltransbis = array(
|
|||||||
'€' => '€',
|
'€' => '€',
|
||||||
'<' => '<', # preserve fake HTML
|
'<' => '<', # preserve fake HTML
|
||||||
'>' => '>', # preserve fake HTML
|
'>' => '>', # preserve fake HTML
|
||||||
|
'&' => '&', # preserve fake HTML
|
||||||
'&sp;' => ' ', '!' => '!', '"' => '"', '#' => '#', '$' => '$', '%' => '%', ''' => ''', '(' => '(', ')' => ')',
|
'&sp;' => ' ', '!' => '!', '"' => '"', '#' => '#', '$' => '$', '%' => '%', ''' => ''', '(' => '(', ')' => ')',
|
||||||
'*' => '*', '+' => '+', ',' => ',', '‐' => '-', '−' => '-', '.' => '.', '/' => '/', ':' => ':', ';' => ';', '<' => '<',
|
'*' => '*', '+' => '+', ',' => ',', '‐' => '-', '−' => '-', '.' => '.', '/' => '/', ':' => ':', ';' => ';', '<' => '<',
|
||||||
'=' => '=', '>' => '>', '?' => '?', '@' => '@', '[' => '[', '\' => '\', ']' => ']', 'ˆ' => '^', '_' => '_', '―' => '_',
|
'=' => '=', '>' => '>', '?' => '?', '@' => '@', '[' => '[', '\' => '\', ']' => ']', 'ˆ' => '^', '_' => '_', '―' => '_',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user