From 96b3058e9f69d710e9464fc9f5a6e5a6203f1e4c Mon Sep 17 00:00:00 2001 From: emc3 Date: Thu, 8 Jan 2004 22:59:25 +0000 Subject: [PATCH] Fix bug handling ampersands. git-svn-id: http://svn.automattic.com/wordpress/trunk@740 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/vars.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/vars.php b/wp-includes/vars.php index 7ee3e4fd1..2731aaf60 100644 --- a/wp-includes/vars.php +++ b/wp-includes/vars.php @@ -62,6 +62,7 @@ $wp_htmltransbis = array( '€' => '€', '<' => '<', # preserve fake HTML '>' => '>', # preserve fake HTML + '&' => '&', # preserve fake HTML '&sp;' => ' ', '!' => '!', '"' => '"', '#' => '#', '$' => '$', '%' => '%', ''' => ''', '(' => '(', ')' => ')', '*' => '*', '+' => '+', ',' => ',', '‐' => '-', '−' => '-', '.' => '.', '/' => '/', ':' => ':', ';' => ';', '<' => '<', '=' => '=', '>' => '>', '?' => '?', '@' => '@', '[' => '[', '\' => '\', ']' => ']', 'ˆ' => '^', '_' => '_', '―' => '_',