From c4030f4b8ff11393a033b038f45fe74b4cbd2852 Mon Sep 17 00:00:00 2001 From: Dougal Campbell Date: Thu, 8 Jan 2004 22:59:25 +0000 Subject: [PATCH] Fix bug handling ampersands. git-svn-id: https://develop.svn.wordpress.org/trunk@740 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/vars.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/vars.php b/wp-includes/vars.php index 7ee3e4fd17..2731aaf602 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;' => ' ', '!' => '!', '"' => '"', '#' => '#', '$' => '$', '%' => '%', ''' => ''', '(' => '(', ')' => ')', '*' => '*', '+' => '+', ',' => ',', '‐' => '-', '−' => '-', '.' => '.', '/' => '/', ':' => ':', ';' => ';', '<' => '<', '=' => '=', '>' => '>', '?' => '?', '@' => '@', '[' => '[', '\' => '\', ']' => ']', 'ˆ' => '^', '_' => '_', '―' => '_',