View Single Post
Old 06-25-2009, 11:42 AM   #2 (permalink)
Wildhoney
La Vida es Sueño
Advanced Programmer Top Contributor 
 
Wildhoney's Avatar
 
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
Wildhoney is on a distinguished road
Default

It's because you're missing "Exception $e" in your catch statement. The $e variable will then contain the Exception object, and so you'll be able to get the messages from it, and error codes, etcetera.

php Code:
if($this->parent)
{
    try
    {
        array_splice($parent->content->,$this);
    }
    catch(Exception $e)
    {
       
    }
}

Incidentally, could you please prettify your pasted code in future. There's a better chance somebody will respond when they open a thread with nicely formatted and coloured code.

Help: Prettifying Pasted Code on TalkPHP
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
Send a message via AIM to Wildhoney Send a message via MSN to Wildhoney Send a message via Yahoo to Wildhoney
Wildhoney is offline  
Reply With Quote