Hi, > I'd happily help in cleaning this up so that I can keep strict in my > php.ini for our own code. Would you receive and integrate patches or > even give me SVN access? I already signed a CLA.
Of course, it would be nice if you'll get commit access. But if you won't get this, there is another possibility: use a custom error handler (http://de3.php.net/manual/en/function.set-error-handler.php). If you return false in your custom error handler, the normal PHP error handling will take place - otherwise not. So you can filter, if the error occured in an eZ Publish file and if it is an E_STRICT or E_NOTICE. If yes: return true; else: return false. Have a nice day Thomas -- Sdk-public mailing list [email protected] http://lists.ez.no/mailman/listinfo/sdk-public
