mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
mail/pear-Mail_Queue: overloading isError static mismatch
Since devel/pear was upgraded to 1.10.1, mail/pear-Mail_Queue was broken and could not be used, giving the following error: PHP Fatal error: Cannot make static method PEAR::isError() non static in class Mail_Queue in /usr/local/share/pear/Mail/Queue.php on line 126 Upstream bug report: http://pear.php.net/bugs/bug.php?id=20976 PR: 215325 Submitted by: ml@netfence.it Reported by: ml@netfence.it MFH: 2017Q1 Approved by: Jochen Neumeister (maintainer), rakuco (mentor)
This commit is contained in:
parent
dc9fbae10c
commit
7de923487e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=432211
@ -3,6 +3,7 @@
|
||||
|
||||
PORTNAME= Mail_Queue
|
||||
PORTVERSION= 1.2.7
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= mail www pear
|
||||
|
||||
MAINTAINER= joneum@bsdproject.de
|
||||
|
11
mail/pear-Mail_Queue/files/patch-Mail_Queue.php
Normal file
11
mail/pear-Mail_Queue/files/patch-Mail_Queue.php
Normal file
@ -0,0 +1,11 @@
|
||||
--- Mail/Queue.php.orig 2016-12-15 17:08:51 UTC
|
||||
+++ Mail/Queue.php
|
||||
@@ -587,7 +587,7 @@ class Mail_Queue extends PEAR
|
||||
* @return boolean whether $value is an MAILQUEUE_ERROR
|
||||
* @access public
|
||||
*/
|
||||
- function isError($value)
|
||||
+ static function isError($value)
|
||||
{
|
||||
return (is_object($value) && is_a($value, 'pear_error'));
|
||||
}
|
Loading…
Reference in New Issue
Block a user