Saludos a tod@s.
Me encuentro trabajando creando los menús, y cada vez que agrego el enlace hacia algún artículo o ver un artículo, me aparece esto:
Warning: cannot yet handle MBCS in html_entity_decode()! in /home/………./libraries/joomla/application/pathway.php on line 209
y dicha rutina es esto (esta en rojo… esa es la línea 209)
/**
* Create and return a new pathway object.
*
* @access private
* @param string $name Name of the item
* @param string $link Link to the item
* @return object Pathway item object
* @since 1.5
*/
function _makeItem($name, $link)
{
$item = new stdClass();
$item->name = html_entity_decode($name, ENT_COMPAT, ‘UTF-8’);
$item->link = $link;
return $item;
}
Muchas gracias adelantadamente.