0m3r
4/18/2014 - 7:45 AM

fast utf-8 fix for ajaxpro

fast utf-8 fix for ajaxpro

<?php 
$_html = $block->toHtml();
if (function_exists('mb_convert_encoding')) {
    $_html  = mb_convert_encoding($_html, "HTML-ENTITIES", "UTF-8");
}
return $_html;