Aleksander Machniak
2015-07-31 fe82e213c3181de85f450fae63aa163c4467cd72
Fix so E_DEPRECATED errors from PEAR libs are ignored by error_reporting change (#1490281)
2 files modified
3 ■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/bootstrap.php 2 ●●● patch | view | raw | blame | history
CHANGELOG
@@ -19,6 +19,7 @@
- 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
-------------
program/lib/Roundcube/bootstrap.php
@@ -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).