Error in PHP Mail_Queue PEAR library

882 Views Asked by At

I'm getting the following error when trying to use the PHP Mail_Queue PEAR library:

Declaration of Mail_Queue::isError() should be compatible with that of PEAR::isError()

PHP 5.2.3, Mail Queue Version 1.2.3

Searching on Google hasn't turned up anything. Any ideas what's causing this?

1

There are 1 best solutions below

1
On

Surely too late but I resolved this issue by modifying the Mail/Queue.php file The declaration of Mail_Queue::isError should match exactly the one provided in PEAR::isError which takes two arguments.

So, changing (line 584 for release 1.2.6) :

function isError($value)

To :

function isError($value, $dummy = "")

Solves the warning. It is not 100% satisfying because this modification will disappear while next update but it saved my day (0% error & warning)