css
This commit is contained in:
parent
cfd3eeb245
commit
b81bde20f3
@ -527,7 +527,7 @@ if (is_array($blocks)) {
|
|||||||
print '<tr class="oddeven">';
|
print '<tr class="oddeven">';
|
||||||
|
|
||||||
// ID
|
// ID
|
||||||
print '<td>'.$block->id.'</td>';
|
print '<td>'.dol_escape_htmltag($block->id).'</td>';
|
||||||
|
|
||||||
// Date
|
// Date
|
||||||
print '<td>'.dol_print_date($block->date_creation, 'dayhour').'</td>';
|
print '<td>'.dol_print_date($block->date_creation, 'dayhour').'</td>';
|
||||||
@ -535,11 +535,11 @@ if (is_array($blocks)) {
|
|||||||
// User
|
// User
|
||||||
print '<td>';
|
print '<td>';
|
||||||
//print $block->getUser()
|
//print $block->getUser()
|
||||||
print $block->user_fullname;
|
print dol_escape_htmltag($block->user_fullname);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
// Action
|
// Action
|
||||||
print '<td>'.$langs->trans('log'.$block->action).'</td>';
|
print '<td class="tdoverflowmax250" title="'.dol_escape_htmltag($langs->trans('log'.$block->action)).'">'.$langs->trans('log'.$block->action).'</td>';
|
||||||
|
|
||||||
// Ref
|
// Ref
|
||||||
print '<td class="nowraponall">';
|
print '<td class="nowraponall">';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user