1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00

Merge pull request #3301 from sakalauskas/patch-2

[PHP 7.4] implode parameter order
This commit is contained in:
David Bomba 2020-09-12 19:56:31 +10:00 committed by GitHub
commit 03138e8598
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ trait Inviteable
} }
} }
return $hasValue ? implode($parts, '<br/>') : false; return $hasValue ? implode('<br/>', $part) : false;
} }
/** /**