Added column title "Tools" for group Permissions and Members links.

This commit is contained in:
Nate Jones
2014-06-20 18:56:02 +00:00
parent 6dc698d0d2
commit 5b212badfa
2 changed files with 7 additions and 2 deletions

View File

@@ -192,6 +192,11 @@
$text['label-group_description']['pt-pt'] = "Descrição";
$text['label-group_description']['fr-fr'] = "Description";
$text['label-group_tools']['en-us'] = "Tools";
$text['label-group_tools']['es-cl'] = "Instrumentos";
$text['label-group_tools']['pt-pt'] = "Ferramentas";
$text['label-group_tools']['fr-fr'] = "Outils";
$text['label-group_permissions']['en-us'] = "Permissions";
$text['label-group_permissions']['es-cl'] = "Permisos";
$text['label-group_permissions']['pt-pt'] = "Permissões";

View File

@@ -89,7 +89,7 @@ else {
$strlist .= "<tr class='border'>\n";
$strlist .= " <th nowrap>".$text['label-group_name']."</th>\n";
$strlist .= " <th nowrap>".$text['label-group_description']."</th>\n";
$strlist .= " <th style='text-align: center;' nowrap>&nbsp;</th>\n";
$strlist .= " <th nowrap>".$text['label-group_tools']."</th>\n";
$strlist .= " <th style='text-align: center;' nowrap>".$text['label-group_protected']."</th>\n";
$strlist .= " <td class='list_control_icons' style='width: 25px;'>";
if (permission_exists('group_add')) {
@@ -116,7 +116,7 @@ else {
$strlist .= "<tr>";
$strlist .= "<td class='".$row_style[$c]."' nowrap>".$group_name."</td>\n";
$strlist .= "<td class='".$row_style[$c]."' nowrap>".$group_description."</td>\n";
$strlist .= "<td class='".$row_style[$c]."' style='text-align: center;' nowrap>\n";
$strlist .= "<td class='".$row_style[$c]."' nowrap>\n";
if (permission_exists('group_add') || if_group("superadmin")) {
$strlist .= "<a class='' href='group_permissions.php?group_name=".$group_name."' title='".$text['label-group_permissions']."'>".$text['label-group_permissions']."</a>&nbsp;&nbsp;";
}