diff options
author | Bharat Mediratta <bharat@menalto.com> | 2012-05-19 11:51:10 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2012-05-19 11:51:10 -0700 |
commit | 648d9a4de8420f0cec037041bb77c39beaa42ac6 (patch) | |
tree | 53ee1989e2cfc3e76ceb667c68ddb2b874dfa309 /modules/gallery/helpers/ajax.php | |
parent | d095022c601539258940a1774a477c20becd5b0f (diff) |
Remove accidental double encoding.
Diffstat (limited to 'modules/gallery/helpers/ajax.php')
-rw-r--r-- | modules/gallery/helpers/ajax.php | 2 |
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; } } |