Merge pull request #9256 from c3do/patch-2

Fix : Erreur de syntaxe ( + au lieu de . )
This commit is contained in:
Laurent Destailleur 2018-08-21 12:48:58 +02:00 committed by GitHub
commit 58b668e74f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -303,7 +303,7 @@ function htmlPrintOnlinePaymentFooter($fromcompany,$langs,$addformmessage=0,$suf
print '<font style="font-size: 10px;"><br><hr>'."\n";
print $fromcompany->name.'<br>';
print $line1;
if (strlen($line1+$line2) > 50) print '<br>';
if (strlen($line1.$line2) > 50) print '<br>';
else print ' - ';
print $line2;
print '</font></div>'."\n";