|
as for the deprecated warning.. this will be certainly be fixed by micheal or chuck, but for the moment there is only 1 way to get rid of that...
you need to edit your php.ini.. as if you were in production environment and change:
display_errors = On
to
display_errors = off
This is not a big problem for now, but it will be under php 6
Luc
PS: I tried
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_USER_DEPRECATED);
AND ini_set("display_errors", "0");
just before the error, but both dont work..
php seems to check for deprecated before compiling...
Last edited by Luciano; February 10th, 2010 at 10:54 AM.
|