diff options
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/local/www/system_usermanager.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/usr/local/www/system_usermanager.php b/src/usr/local/www/system_usermanager.php index 8808681..0563287 100644 --- a/src/usr/local/www/system_usermanager.php +++ b/src/usr/local/www/system_usermanager.php @@ -378,6 +378,7 @@ function build_priv_table() { $privhtml .= '<th>' . gettext('Inherited from') . '</th>'; $privhtml .= '<th>' . gettext('Name') . '</th>'; $privhtml .= '<th>' . gettext('Description') . '</th>'; + $privhtml .= '<th>' . gettext('Action') . '</th>'; $privhtml .= '</tr>'; $privhtml .= '</thead>'; $privhtml .= '<tbody>'; @@ -396,7 +397,7 @@ function build_priv_table() { $privhtml .= '<td>' . htmlspecialchars($priv['descr']) . '</td>'; $privhtml .= '<td>'; if (!$group) { - $privhtml .= '<a class="fa fa-trash no-confirm icon-pointer" title="' . gettext('Delete Privilege') . '" id="delprivid' . $i . '"></a></td>'; + $privhtml .= '<a class="fa fa-trash no-confirm icon-pointer" title="' . gettext('Delete Privilege') . '" id="delprivid' . $i . '"></a>'; } $privhtml .= '</td>'; |