You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Utilizzando PHP8 si ottiene errore in alcuni Menu per la visualizzazione degli articoli delle categorie
Expected result
Visualizzazione corretta
Actual result
Errore
System information (as much as possible)
Sarebbe necessario modificare tutti i file che contengono la stringa "$params = &$this->item->params;" in "italiapa\html\com_content" con una nuova stringa:
Old:
$params = &$this->item->params;
New:
$params = null;
if (property_exists($this,"item")){ $params = &$this->item->params; }
Additional comments
The text was updated successfully, but these errors were encountered:
Steps to reproduce the issue
Utilizzando PHP8 si ottiene errore in alcuni Menu per la visualizzazione degli articoli delle categorie
Expected result
Visualizzazione corretta
Actual result
Errore
System information (as much as possible)
Sarebbe necessario modificare tutti i file che contengono la stringa "$params = &$this->item->params;" in "italiapa\html\com_content" con una nuova stringa:
Old:
$params = &$this->item->params;
New:
$params = null;
if (property_exists($this,"item")){ $params = &$this->item->params; }
Additional comments
The text was updated successfully, but these errors were encountered: