Re: Re: User error handler must not modify error context

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Noel wrote:
Actually, that's all of it aside from the function statement and the return statement.

function funcTitle ($title='') {
        global $mywebsite;
        if ($_POST['title']) $title = $_POST['title'];
        elseif ($_GET['title']) $title = $_GET['title'];
        elseif (!$title) $title = $mywebsite;
        return '<title>'.$title.'</title>';
        }

I don't see anything wrong with the code, do you? After all, the error does not occur if I try to comment out the user_error_handler() function. And also, this error didn't occur in the previous version. Nothing has been modified in the PHP codes when the PHP version has been upgraded to 4.4. Only after the upgrade did this error occurred.

Please don't top-post. Sorry, I assumed that code was part of your error_handler. Can you please post your user_error_handler() function?

Thanks
--
Jasper Bryant-Greene
Freelance web developer
http://jasper.bryant-greene.name/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux