summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2012-05-19 11:51:10 -0700
committerBharat Mediratta <bharat@menalto.com>2012-05-19 11:51:10 -0700
commit648d9a4de8420f0cec037041bb77c39beaa42ac6 (patch)
tree53ee1989e2cfc3e76ceb667c68ddb2b874dfa309
parentd095022c601539258940a1774a477c20becd5b0f (diff)
Remove accidental double encoding.
-rw-r--r--modules/gallery/helpers/ajax.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/ajax.php b/modules/gallery/helpers/ajax.php
index f01984a9..6d59b6e4 100644
--- a/modules/gallery/helpers/ajax.php
+++ b/modules/gallery/helpers/ajax.php
@@ -26,6 +26,6 @@ class ajax_Core {
static function response($content) {
header("Content-Type: text/plain; charset=" . Kohana::CHARSET);
print "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">\n";
- print html::clean($content);
+ print $content;
}
}