Removed phpcs warning

This commit is contained in:
Laurent Destailleur 2015-11-13 12:48:17 +01:00
parent ab177b43af
commit 5e67eefff3

View File

@ -726,7 +726,8 @@ function pdf_bank(&$pdf,$outputlangs,$curx,$cury,$account,$onlynumber=0,$default
$ibanDisplay_temp = str_replace(' ', '', $outputlangs->convToOutputCharset($account->iban)); $ibanDisplay_temp = str_replace(' ', '', $outputlangs->convToOutputCharset($account->iban));
$ibanDisplay = ""; $ibanDisplay = "";
for($i = 0; $i < dol_strlen($ibanDisplay_temp); $i++) $nbIbanDisplay_temp = dol_strlen($ibanDisplay_temp);
for ($i = 0; $i < $nbIbanDisplay_temp; $i++)
{ {
$ibanDisplay .= $ibanDisplay_temp[$i]; $ibanDisplay .= $ibanDisplay_temp[$i];
if($i%4 == 3 && $i > 0) $ibanDisplay .= " "; if($i%4 == 3 && $i > 0) $ibanDisplay .= " ";