From 5677177ebcae08cc234cb5b403adc6c080a6bfce Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Tue, 19 Mar 2019 13:45:50 +0100 Subject: [PATCH] update with html5 compliant code --- htdocs/accountancy/bookkeeping/list.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/htdocs/accountancy/bookkeeping/list.php b/htdocs/accountancy/bookkeeping/list.php index c1716dc18af..790a71f96f4 100644 --- a/htdocs/accountancy/bookkeeping/list.php +++ b/htdocs/accountancy/bookkeeping/list.php @@ -648,7 +648,7 @@ if ($num > 0) // Document date if (! empty($arrayfields['t.doc_date']['checked'])) { - print '' . dol_print_date($line->doc_date, 'day') . ''; + print '' . dol_print_date($line->doc_date, 'day') . ''; if (! $i) $totalarray['nbfield']++; } @@ -701,7 +701,7 @@ if ($num > 0) // Lettering code if (! empty($arrayfields['t.lettering_code']['checked'])) { - print '' . $line->lettering_code . ''; + print '' . $line->lettering_code . ''; if (! $i) $totalarray['nbfield']++; } @@ -711,26 +711,26 @@ if ($num > 0) $accountingjournal = new AccountingJournal($db); $result = $accountingjournal->fetch('', $line->code_journal); $journaltoshow = (($result > 0)?$accountingjournal->getNomUrl(0, 0, 0, '', 0) : $line->code_journal); - print '' . $journaltoshow . ''; + print '' . $journaltoshow . ''; if (! $i) $totalarray['nbfield']++; } // Creation operation date if (! empty($arrayfields['t.date_creation']['checked'])) { - print '' . dol_print_date($line->date_creation, 'dayhour') . ''; + print '' . dol_print_date($line->date_creation, 'dayhour') . ''; if (! $i) $totalarray['nbfield']++; } // Modification operation date if (! empty($arrayfields['t.tms']['checked'])) { - print '' . dol_print_date($line->date_modification, 'dayhour') . ''; + print '' . dol_print_date($line->date_modification, 'dayhour') . ''; if (! $i) $totalarray['nbfield']++; } // Action column - print ''; + print ''; print '' . img_edit() . ' '; print '' . img_delete() . ''; print '';