diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-18 05:31:54 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-18 05:31:54 +0000 |
commit | 698f05d14f880eb4ec7866ec3a8416ee4d1f838f (patch) | |
tree | afcfb18b11f13c1ba429612a94432fa0a64aa12c /lib/log.lib.php | |
parent | 74201cb6158db6448ebf5d8330ace6ad4a139693 (diff) | |
download | ampache-698f05d14f880eb4ec7866ec3a8416ee4d1f838f.tar.gz ampache-698f05d14f880eb4ec7866ec3a8416ee4d1f838f.tar.bz2 ampache-698f05d14f880eb4ec7866ec3a8416ee4d1f838f.zip |
fixed XML-RPC mostly, uses insecure/old authentication method, needs more work
Diffstat (limited to 'lib/log.lib.php')
-rw-r--r-- | lib/log.lib.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/log.lib.php b/lib/log.lib.php index 63c2ba4a..83786c67 100644 --- a/lib/log.lib.php +++ b/lib/log.lib.php @@ -84,7 +84,8 @@ function ampache_error_handler($errno, $errstr, $errfile, $errline) { * Yea now getid3() spews errors I love it :( */ if (strstr($errstr,"var: Deprecated. Please use the public/private/protected modifiers") OR - strstr($errstr,"getimagesize() [") OR strstr($errstr,"Non-static method getid3")) { + strstr($errstr,"getimagesize() [") OR strstr($errstr,"Non-static method getid3") OR + strstr($errstr,"Assigning the return value of new by reference is deprecated")) { return false; } |