From 482c6efdd92795016ce4fc8499b9f3a7ce554392 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Thu, 15 Nov 2018 20:35:40 +0100 Subject: [PATCH] replace php > 5.4 code --- .../lib/classes/Swift/CharacterStream/ArrayCharacterStream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/includes/swiftmailer/lib/classes/Swift/CharacterStream/ArrayCharacterStream.php b/htdocs/includes/swiftmailer/lib/classes/Swift/CharacterStream/ArrayCharacterStream.php index fbfbceb01d1..e43bd2ed510 100644 --- a/htdocs/includes/swiftmailer/lib/classes/Swift/CharacterStream/ArrayCharacterStream.php +++ b/htdocs/includes/swiftmailer/lib/classes/Swift/CharacterStream/ArrayCharacterStream.php @@ -172,7 +172,7 @@ class Swift_CharacterStream_ArrayCharacterStream implements Swift_CharacterStrea } $this->offset += ($i - $this->offset); // Limit function calls - return array_merge(...$arrays); + return call_user_func_array('array_merge', $arrays); } /**