From d375b20225f5beae2fd55c07c9f3a40b5e41637a Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Wed, 27 May 2015 11:43:17 +0200 Subject: [PATCH] Suppress E_DEPRECATED errors after change in [4ab77dd1] --- program/lib/Roundcube/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/lib/Roundcube/bootstrap.php b/program/lib/Roundcube/bootstrap.php index 84d3787b9..0cfa574ba 100644 --- a/program/lib/Roundcube/bootstrap.php +++ b/program/lib/Roundcube/bootstrap.php @@ -100,7 +100,7 @@ spl_autoload_register('rcube_autoload'); // set PEAR error handling (will also load the PEAR main class) if (class_exists('PEAR')) { - PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'rcube_pear_error'); + @PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'rcube_pear_error'); }