diff options
Diffstat (limited to 'lib/log.lib.php')
-rw-r--r-- | lib/log.lib.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/log.lib.php b/lib/log.lib.php index a82338f0..ed19984c 100644 --- a/lib/log.lib.php +++ b/lib/log.lib.php @@ -81,8 +81,11 @@ function ampache_error_handler($errno, $errstr, $errfile, $errline) { break; } // end switch - /* Don't log var: Deprecated we know shutup! */ - if (strstr($errstr,"var: Deprecated. Please use the public/private/protected modifiers")) { + /* Don't log var: Deprecated we know shutup! + * Yea now getid3() spews errors I love it :( + */ + if (strstr($errstr,"var: Deprecated. Please use the public/private/protected modifiers") OR + strstr($errstr,"getimagesize() [")) { return false; } |