Page 1 of 1

hi I need help urgently

Posted: Tue Jan 19, 2010 10:59 am
by gotornot
Hi i need real help ive been dumped in the poop by my ex developer.

I am a coder but only a basic one I have this being shown below:

Fatal error: Call to a member function on a non-object in /home/adcentre/lib/class.ad-connector.php on line 359

this is the function it is talking about:

Code: Select all

 
function ad_status($id)
    {
        $id = (int)$id;
 
        $q = 'SELECT status FROM advert WHERE id = '.$id;
        $this->db->safe_query($q, __FUNCTION__, __LINE__);
 
        if (!$this->db->num_rows())
        {
            return ADCON_STATUS_ABSENT;
        }
 
        $status = $this->db->result();
 
        if ($status == 1)
        {
            return ADCON_STATUS_ACTIVE;
        }
 
        return ADCON_STATUS_SUSPENDED;
    }
 
Any ideas?????

Posted: Tue Jan 19, 2010 11:49 am
by Jonah Bron
We don't know where this code is inside the file, or anything about it's context. What line here is line 359?

Re: hi I need help urgently

Posted: Tue Jan 19, 2010 6:22 pm
by McInfo
My guess is that $this->db has not been initialized as an object.

Edit: This post was recovered from search engine cache.