Fix so E_DEPRECATED errors from PEAR libs are ignored by error_reporting change (#1490281)

pull/282/merge
Aleksander Machniak 9 years ago
parent 424c25e5bc
commit fe82e213c3

@ -19,6 +19,7 @@ CHANGELOG Roundcube Webmail
- Fix draft removal after a message is sent and storing sent message is disabled (#1490467)
- Fix so imap folder attribute comparisons are case-insensitive (#1490466)
- Fix bug where new messages weren't added to the list in search mode
- Fix so E_DEPRECATED errors from PEAR libs are ignored by error_reporting change (#1490281)
RELEASE 1.1.2
-------------

@ -26,7 +26,7 @@
*/
$config = array(
'error_reporting' => E_ALL & ~E_NOTICE & ~E_STRICT,
'error_reporting' => E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED,
// Some users are not using Installer, so we'll check some
// critical PHP settings here. Only these, which doesn't provide
// an error/warning in the logs later. See (#1486307).

Loading…
Cancel
Save