domingo, 15 de diciembre de 2013

Error en Joomla 3.2

Fatal error: Call to undefined function getTemplate() in libraries/expose/admin/fields/positions.php on line 38

Encontré esta solución y funcionó. Mis menús no se dejaban modificar.

I found the solutions for this problem. I went to the file positions.php and searched for the following rule;
$path = JPATH_ROOT . '/templates/' . getTemplate($id) .'/templateDetails.xml';

I replaced this with;
$path = JPATH_ROOT . '/templates/' . '/templateDetails.xml';

This works fine! I can now create menu items again and modify existing ones.