Skip to content

Commit

Permalink
Fix PHP warning: Non-static method PEAR::setErrorHandling() should no…
Browse files Browse the repository at this point in the history
…t be called statically (#1490343)
  • Loading branch information
alecpl committed Apr 1, 2015
1 parent 88578e2 commit fdcef5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -4,6 +4,7 @@ CHANGELOG Roundcube Webmail
- Fix handling of %-encoded entities in mailto: URLs (#1490346)
- Fix zipped messages downloads after selecting all messages in a folder (#1490339)
- Fix vpopmaild driver of password plugin
- Fix PHP warning: Non-static method PEAR::setErrorHandling() should not be called statically (#1490343)

RELEASE 1.1.1
-------------
Expand Down
2 changes: 1 addition & 1 deletion program/lib/Roundcube/bootstrap.php
Expand Up @@ -99,7 +99,7 @@
spl_autoload_register('rcube_autoload');

// set PEAR error handling (will also load the PEAR main class)
PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'rcube_pear_error');
@PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'rcube_pear_error');



Expand Down

0 comments on commit fdcef5e

Please sign in to comment.