diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-18 09:10:44 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-18 09:10:44 -0700 |
commit | d11593246648d3fbad30b4405d5dbbf73063769a (patch) | |
tree | 6657352ea9a5594fbb2e8c437d758400826f6be7 | |
parent | 55a54d6f6a98e02e204a59ebb7e6f9ea9d99ab5b (diff) |
Sigh... somehow left a stray bit of test code and broke activity.php.
-rw-r--r-- | lib/activity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/activity.php b/lib/activity.php index d7e13052d..4b724ee90 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -462,7 +462,7 @@ class ActivityUtils return htmlspecialchars($contentEl->textContent); } else if ($type == 'html') { // The XML text decoding gives us an HTML string ready to roll. - return $contentEl->textContent, ENT_QUOTES; + return $contentEl->textContent; } else if ($type == 'xhtml') { // Embedded XHTML; we have to pull it out of the document tree, // then serialize it back out to an HTML fragment string. |