el primero, el modulo de Zaragoza Clouds para nube de etiquetas no me reconocen acentos .... no sé que hacer para arreglarlo
LA extension eventlist, y tb el calendar me dan el siguiente error:
Código:
  
Esta es la función del archivo route.phpWarning: Invalid argument supplied for foreach() in C:\Documents and Settings\Aresillo!!\Escritorio\Joomla\extensiones\components\com_eventlist\helpers\route.php on line 87 Warning: Invalid argument supplied for foreach() in C:\Documents and Settings\Aresillo!!\Escritorio\Joomla\extensiones\components\com_eventlist\helpers\route.php on line 96 Warning: Invalid argument supplied for foreach() in C:\Documents and Settings\Aresillo!!\Escritorio\Joomla\extensiones\components\com_eventlist\helpers\route.php on line 87 Warning: Invalid argument supplied for foreach() in C:\Documents and Settings\Aresillo!!\Escritorio\Joomla\extensiones\components\com_eventlist\helpers\route.php on line 96
Código:
  
Alguna sugerencia.../**
	 * Determines the Itemid
	 *
	 * searches if a menuitem for this item exists
	 * if not the first match will be returned
	 *
	 * @param array The id and view
	 * @since 0.9
	 *
	 * @return int Itemid
	 */
	function _findItem($needles)
	{
		$component =& JComponentHelper::getComponent('com_eventlist');
		$menus	= & JSite::getMenu();
		$items	= $menus->getItems('componentid', $component->id);
		$user 	= & JFactory::getUser();
		$access = (int)$user->get('aid');
		//Not needed currently but kept because of a possible hierarchic link structure in future
		foreach($needles as $needle => $id)
		{
			foreach($items as $item)
			{
				if ((@$item->query['view'] == $needle) && (@$item->query['id'] == $id) && ($item->published == 1) && ($item->access <= $access)) {
					return $item;
				}
			}
			//no menuitem exists -> return first possible match
			foreach($items as $item)
			{
				if ($item->published == 1 && $item->access <= $access) {
					return $item;
				}
			}
		}
		return false;
	}
}
?>
Aressillo!!
PS: Estoy empezando
 
 



