fix feeds table title

This commit is contained in:
Jean-Christian Paul Denis 2022-12-11 20:29:48 +01:00
parent ec3b92b997
commit 16682dc400
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951

View File

@ -50,12 +50,12 @@ class zcfsFeedsList extends adminGenericList
) . '</caption>';
$cols = [
'title' => '<th colspan="2" class="first">' . __('Name') . '</th>',
'desc' => '<th scope="col">' . __('Feed') . '</th>',
'period' => '<th scope="col">' . __('Frequency') . '</th>',
'update' => '<th scope="col">' . __('Last update') . '</th>',
'entries' => '<th scope="col">' . __('Entries') . '</th>',
'status' => '<th scope="col">' . __('Status') . '</th>',
'title' => '<th colspan="2" class="first nowrap">' . __('Name') . '</th>',
'desc' => '<th class="nowrap" scope="col">' . __('Feed') . '</th>',
'period' => '<th class="nowrap" scope="col">' . __('Frequency') . '</th>',
'update' => '<th class="nowrap" scope="col">' . __('Last update') . '</th>',
'entries' => '<th class="nowrap" scope="col">' . __('Entries') . '</th>',
'status' => '<th class="nowrap" scope="col">' . __('Status') . '</th>',
];
$cols = new ArrayObject($cols);