The Joomla! Forum ™



Forum rules


Please use the Forum Post Assistant to give your server setting details which are necessary to determine the problem.



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
PostPosted: Sun Nov 14, 2010 2:51 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Wed Feb 10, 2010 1:55 pm
Posts: 9
Hi just installed the new beta, I know it comes with no warrenties, but now I get this error on my site:
Fatal error: Call to a member function getPath() on a non-object in ***\htdocs\libraries\joomla\application\categories.php on line 434

it comes from this function:
Code:
   function setParent(&$parent)
   {
      if ($parent instanceof JCategoryNode || is_null($parent)) {
         if (!is_null($this->_parent)) {
            $key = array_search($this, $this->_parent->_children);
            unset($this->_parent->_children[$key]);
         }
         if (!is_null($parent)) {
            $parent->_children[] = & $this;
         }

         $this->_parent = & $parent;

         if ($this->id != 'root') {
            $this->_path = $parent->getPath(); // THIS LINE
            $this->_path[] = $this->id.':'.$this->alias;
         }

         if (count($parent->_children) > 1) {
            end($parent->_children);
            $this->_leftSibling = prev($parent->_children);
            $this->_leftSibling->_rightsibling = &$this;
         }
      }
   }

if I var_dump($parent) it is null. How can I find out what is calling this?


Top
 Profile  
 
PostPosted: Sun Nov 14, 2010 3:03 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Wed Feb 10, 2010 1:55 pm
Posts: 9
I fixed it by changing
if ($parent instanceof JCategoryNode || is_null($parent)) {
to
if ($parent instanceof JCategoryNode || !is_null($parent)) {


Top
 Profile  
 
PostPosted: Sat Apr 16, 2011 12:55 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice

Joined: Sat Oct 11, 2008 1:46 pm
Posts: 8
Thank you.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 



Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group