We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d5ee4af + aa30e6a commit 72b9599Copy full SHA for 72b9599
.github/workflows/lint.yml
@@ -8,7 +8,7 @@ on:
8
- 'main'
9
# Replace pull_request with pull_request_target if you
10
# plan to use this action with forks, see the Limitations section
11
- pull_request:
+ pull_request_target:
12
branches:
13
14
webroot/admin/user-mgmt.php
@@ -46,7 +46,7 @@
46
echo "<td><a href='mailto:" . $user->getMail() . "'>" . $user->getMail() . "</a></td>";
47
echo "<td>";
48
$cur_user_groups = $user->getGroups();
49
- foreach($cur_user_groups as $cur_group) {
+ foreach ($cur_user_groups as $cur_group) {
50
echo "<a href='mailto:" . $cur_group->getOwner()->getMail() . "'>" . $cur_group->getPIUID() . "</a>";
51
if ($cur_group !== array_key_last($cur_user_groups)) {
52
echo '<br>';
0 commit comments