diff options
-rw-r--r-- | core/views/welcome.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/welcome.html.php b/core/views/welcome.html.php index 748bc074..a0c4500b 100644 --- a/core/views/welcome.html.php +++ b/core/views/welcome.html.php @@ -354,7 +354,7 @@ <?= html::anchor("albums/{$current->album->id}", $current->album->title) ?> » <? foreach (array("view", "edit") as $perm): ?> - <? if (access::can(group::EVERYBODY, $perm, $current->album->id)): ?> + <? if (access::group_can(group::EVERYBODY, $perm, $current->album->id)): ?> <?= html::anchor("welcome/deny_perm/0/$perm/{$current->album->id}", strtoupper($perm), array("class" => "allowed")) ?> <? else: ?> <?= html::anchor("welcome/add_perm/0/$perm/{$current->album->id}", strtolower($perm), array("class" => "denied")) ?> |