--- a/includes/wikiengine/Render/Xhtml.php Sat Jul 28 18:11:14 2007 -0400
+++ b/includes/wikiengine/Render/Xhtml.php Sun Jul 29 17:40:36 2007 -0400
@@ -61,11 +61,12 @@
// have to check null and false because HTML_ENTITIES is a zero
if ($type === HTML_ENTITIES) {
+ /*
// keep a copy of the translated version of the delimiter
// so we can convert it back.
$new_delim = htmlentities($this->wiki->delim, $quotes, $charset);
-
+
// convert the entities. we silence the call here so that
// errors about charsets don't pop up, per counsel from
// Jan at Horde. (http://pear.php.net/bugs/bug.php?id=4474)
@@ -84,6 +85,7 @@
$text = str_replace(
$new_delim, $this->wiki->delim, $text
);
+ */
} elseif ($type === HTML_SPECIALCHARS) {