tengo una web... hecha en wordpress..
descargue una galeria y la monte.. funcionaba de las mil maravillas hasta que..
Código HTML:
Fatal error: Only variables can be passed by reference in /hosting/aia/www.aia.com.py/wp-content/plugins/flash-album-gallery/lib/meta.php on line 350
el php con problemas es este..
Código PHP:
function setArrayValue(& $array, $stack, $value) {
if ($stack) {
$key = array_shift($stack);
//TODO:Review this, reports sometimes a error "Fatal error: Only variables can be passed by reference" (PHP 5.2.6)
$this->setArrayValue($array [$key], $stack, $value);
return $array;
}
else {
$array = $value;
}
}
como puedo solucionar este error.. no lo entiendo