Silence PHP warnings in phpmemcached and opcache GUIs

This commit is contained in:
cytopia 2020-11-12 14:20:42 +01:00
parent 9367c9540a
commit 039ffacaf7
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2
3 changed files with 5 additions and 1 deletions

View File

@ -13,6 +13,7 @@
* @license MIT, http://acollington.mit-license.org/
*/
error_reporting(E_ALL & ~E_DEPRECATED & ~E_NOTICE);
/*
* User configuration

View File

@ -1,4 +1,5 @@
<?php
error_reporting(E_ALL & ~E_WARNING & ~E_NOTICE);
return array (
'stats_api' => 'Server',
'slabs_api' => 'Server',

View File

@ -9,8 +9,10 @@ major versions.
## Release v1.8.1 (2020-11-12)
#### Added
#### Fixed
- Silence PHP warnings in phpmemcached and opcache GUIs
#### Added
- Added `check-config.sh` script to check against correct Devilbox configuration