what's your error_reporting set at?

Mine is currently set at showing all errors except notices:
Code:
Line 260:                error_reporting  =  E_ALL & ~E_NOTICE
You could also look into turning display_errors off, it should be on line 267 of php.ini-dist. If you're making a production website, I suggest turning off display_errors to disallow end-users from potentially viewing file paths/database schemes and have log_errors (line 277) on instead.

Try playing around with either one of those lines