diff options
author | NOYB <Al_Stu@Frontier.com> | 2016-03-07 22:43:52 -0800 |
---|---|---|
committer | NOYB <Al_Stu@Frontier.com> | 2016-03-07 22:43:52 -0800 |
commit | 70da45c9ef518fc12a2018458627ae960ac6b524 (patch) | |
tree | 6c8c7c90d15e177e033dd9f4ef39404d67cd9881 | |
parent | 21749f7ab880ed478be77c3b2db2370c22a4e47c (diff) | |
download | pfsense-70da45c9ef518fc12a2018458627ae960ac6b524.zip pfsense-70da45c9ef518fc12a2018458627ae960ac6b524.tar.gz |
System / User Manager / Groups / Edit
Error: th start tag in table body.
Warning: A table row was 3 columns wide and exceeded the column count established by the first row (2).
-rw-r--r-- | src/usr/local/www/system_groupmanager.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/usr/local/www/system_groupmanager.php b/src/usr/local/www/system_groupmanager.php index 4906861..e065e9c 100644 --- a/src/usr/local/www/system_groupmanager.php +++ b/src/usr/local/www/system_groupmanager.php @@ -246,8 +246,11 @@ function build_priv_table() { $privhtml = '<div class="table-responsive">'; $privhtml .= '<table class="table table-striped table-hover table-condensed">'; $privhtml .= '<thead>'; - $privhtml .= '<th>' . gettext('Name') . '</th>'; - $privhtml .= '<th>' . gettext('Description') . '</th>'; + $privhtml .= '<tr>'; + $privhtml .= '<th>' . gettext('Name') . '</th>'; + $privhtml .= '<th>' . gettext('Description') . '</th>'; + $privhtml .= '<th>' . gettext('Action') . '</th>'; + $privhtml .= '</tr>'; $privhtml .= '</thead>'; $privhtml .= '<tbody>'; |