Merge pull request #2711 from NOYB/System_/_User_Manager_/_Users_/_Edit

This commit is contained in:
Stephen Beaver 2016-03-08 07:28:41 -05:00
commit 8c19aeceb1

View File

@ -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>';