Ciao, scusa per la disattenzione, sono nuovo del forum
Il problema riguardante questa estensione commerciale riguarda del codice presente anche nei componenti di joomla, precisamente nel file components/com_content/models/category.php (
http://www.reference.joomlademo.de/components/com_content/models/category.php.source.txt). Nello specifico, il problema è sempre legato alla riga di codice che avevo segnalato prima e si trova nella funzione:
function &getChildren() { if (!is_object($this->_item)) { $this->getCategory(); } // Order subcategories if (count($this->_children)) { $params = $this->getState()->get('params'); if ($params->get('orderby_pri') == 'alpha' || $params->get('orderby_pri') == 'ralpha') { jimport('joomla.utilities.arrayhelper'); JArrayHelper::sortObjects($this->_children, 'title', ($params->get('orderby_pri') == 'alpha') ? 1 : -1); } } return $this->_children; }
Per essere ancora più precisi, l'errore si presenta a questa riga:$params = $this->getState()->get('params');L'errore è questo: Fatal error: Call to a member function get() on a non-object.[/size]Potete darmi qualche consiglio, per favore?[/size]Grazie ancora.