diff options
Diffstat (limited to 'modules/gallery/helpers')
-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; } } |