1
Joomla! 1.6/1.7/2.5 / Re:Notice: array to string conversion
« il: 22 Ott 2012, 21:30:42 »
A darti il problema dovrebbe essere il getstate(), fai questo cambio:
$id .= ':'.$this->getState('PARAMETRO');
DIVENTA
$id .= ':' . serialize($this->getState('PARAMETRO'));
Fai il cambio su tutte le righe che danno problemi.
bye
$id .= ':'.$this->getState('PARAMETRO');
DIVENTA
$id .= ':' . serialize($this->getState('PARAMETRO'));
Fai il cambio su tutte le righe che danno problemi.
bye