mirror of https://git.FreeBSD.org/ports.git
devel/phabricator: Fix phpmailer with PHP 8
PR: 280512 Reported by: Ivan Rozhuk <rozhuk.im@gmail.com>
This commit is contained in:
parent
12b5c3c8f1
commit
4512883f38
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= phabricator
|
||||
PORTVERSION= 20211218
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= devel
|
||||
PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
|
||||
|
||||
|
@ -14,8 +14,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
|
|||
RUN_DEPENDS= arcanist-lib${PHP_PKGNAMESUFFIX}>=20210113_4:devel/arcanist-lib@${PHP_FLAVOR} \
|
||||
git:devel/git
|
||||
|
||||
USES= cpe php:cli,flavors shebangfix
|
||||
USES= cpe dos2unix php:cli,flavors shebangfix
|
||||
CPE_VENDOR= phacility
|
||||
DOS2UNIX_FILES= externals/phpmailer/class.smtp.php externals/phpqrcode/phpqrcode.php
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= phacility
|
||||
GH_TAGNAME= dec9522
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
--- externals/phpmailer/class.phpmailer-lite.php.orig 2024-12-03 14:44:25 UTC
|
||||
+++ externals/phpmailer/class.phpmailer-lite.php
|
||||
@@ -1492,7 +1492,7 @@ class PHPMailerLite {
|
||||
$eol = "\r\n";
|
||||
$escape = '=';
|
||||
$output = '';
|
||||
- while( list(, $line) = each($lines) ) {
|
||||
+ foreach ($lines as $line) {
|
||||
$linlen = strlen($line);
|
||||
$newline = '';
|
||||
for($i = 0; $i < $linlen; $i++) {
|
|
@ -0,0 +1,11 @@
|
|||
--- externals/phpmailer/class.phpmailer.php.orig 2024-12-03 14:44:25 UTC
|
||||
+++ externals/phpmailer/class.phpmailer.php
|
||||
@@ -1624,7 +1624,7 @@ class PHPMailer {
|
||||
$eol = "\r\n";
|
||||
$escape = '=';
|
||||
$output = '';
|
||||
- while( list(, $line) = each($lines) ) {
|
||||
+ foreach ($lines as $line) {
|
||||
$linlen = strlen($line);
|
||||
$newline = '';
|
||||
for($i = 0; $i < $linlen; $i++) {
|
|
@ -0,0 +1,20 @@
|
|||
--- externals/phpmailer/class.smtp.php.orig 2024-12-03 14:44:25 UTC
|
||||
+++ externals/phpmailer/class.smtp.php
|
||||
@@ -385,7 +385,7 @@ class SMTP {
|
||||
|
||||
$max_line_length = 998; // used below; set here for ease in change
|
||||
|
||||
- while(list(,$line) = @each($lines)) {
|
||||
+ foreach($lines as $line) {
|
||||
$lines_out = null;
|
||||
if($line == "" && $in_headers) {
|
||||
$in_headers = false;
|
||||
@@ -414,7 +414,7 @@ class SMTP {
|
||||
$lines_out[] = $line;
|
||||
|
||||
// send the lines to the server
|
||||
- while(list(,$line_out) = @each($lines_out)) {
|
||||
+ foreach($lines_out as $line_out) {
|
||||
if(strlen($line_out) > 0)
|
||||
{
|
||||
if(substr($line_out, 0, 1) == ".") {
|
Loading…
Reference in New Issue