$res .= '<table class="liste">';
$res .= '<tr><th>' . commonUrl::orderby('#', 'book_id', $settings, 'sort' . $change) . '</th>';
$res .= '<th>' . commonUrl::orderby(__('Titre de la publication'), 'nom', $settings, 'sort' . $change) . '</th>';
- $res .= '<th>' . commonUrl::orderby(__('Date'), 'date', $settings, 'sort' . $change) . '</th>';
+ $res .= '<th>' . commonUrl::orderby(sprintf(__('Date de%scréation'), '<br>'), 'date', $settings, 'sort' . $change) . '</th>';
+ $res .= '<th>' . commonUrl::orderby(sprintf(__('Date de%smodification'), '<br>'), 'changedate', $settings, 'sort' . $change) . '</th>';
$res .= '<th>' . commonUrl::orderby(__(''), 'lang', $settings, 'sort' . $change) . '</th>';
$res .= '<th>' . __('Pages') . '</th>';
if ($droits->admin) {
$res .= '<td>' . $book->book_id . '</td>';
$res .= '<td>' . html::escapeHTML($book->nom) . '</td>';
$res .= '<td>' . date('Y-m-d', $book->date) . '</td>';
+ $res .= '<td>' . date('Y-m-d', $book->changedate) . '</td>';
$res .= '<td>' . mb_strtoupper($book->lang) . '</td>';
$res .= '<td>' . $book->parametres->pages . '</td>';
if ($droits->admin) {