http://bugs.winehq.org/show_bug.cgi?id=35350
Jeremy Newman jnewman@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED
--- Comment #2 from Jeremy Newman jnewman@codeweavers.com --- I have modified the error_reporting value in .htaccess to omit the various forms of reporting that the code in AppDB fails on.
This is the E_ALL value (32767) and the removing the E_DEPRECATED (8192) and E_STRICT (2048) and E_NOTICE (8) values.
So in .htaccess we have:
php_value error_reporting 22519
A separate bug should be filed to update the AppDB codebase to be compliant with modern PHP coding standards. There are quite a few deprecated features that the AppDB is using that will go away in a future version of PHP.