0:57:25 on 1-19-2005   http://pasta.cantbedone.org
--- lib/MT/Util.pm.orig Wed May 28 09:48:41 2003
+++ lib/MT/Util.pm      Wed Jan 19 01:54:08 2005
@@ -249,13 +249,7 @@
         if ($Have_Entities && !MT::ConfigMgr->instance->NoHTMLEntities) {
             $html = HTML::Entities::encode_entities($html);
         } else {
-            if ($can_double_encode) {
-                $html =~ s!&!&!g;
-            } else {
-                ## Encode any & not followed by something that looks like
-                ## an entity, numeric or otherwise.
-                $html =~ s/&(?!#?[xX]?(?:[0-9a-fA-F]+|\w{1,8});)/&/g;
-            }
+            $html =~ s!&!&!g;
             $html =~ s!"!"!g;
             $html =~ s!<!<!g;
             $html =~ s!>!>!g;