Как убрать кракозябры (исправить кодировку) в title дополнительных картинок Virtuemart

components\com_virtuemart\themes\default\theme.php

if( $this->get_cfg(‘useLightBoxImages’, 1 )) {
$html .= vmCommonHTML::getLightboxImageLink( $image->file_url, $thumbtag, $title ? $title : stripslashes(htmlentities($image->file_title,ENT_QUOTES,’UTF-8′)), ‘product’.$product_id );
}

Нужно явно указать кодировку для функции htmlentities третьим параметром

Добавить комментарий