Add missing label for global groups (#7668)

* Add missing label for global groups

* Update groups.php
This commit is contained in:
Alex
2025-12-22 11:21:42 -07:00
committed by GitHub
parent abee34fced
commit 19e71e228f

View File

@@ -242,7 +242,8 @@
echo " </td>\n";
}
if ($show == 'all' && permission_exists('group_all')) {
echo " <td>".escape($row['domain_name'])."</td>\n";
$domain = $row['domain_name'] ?? $text['label-global'];
echo " <td>".escape($domain)."</td>\n";
}
echo " <td>\n";
if (permission_exists('group_edit')) {