From a7198f58ce9787c7b67210d6d2eec8f95ceea775 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 13 Aug 2023 14:19:32 +0800 Subject: [PATCH] Fix"Add" shortcut link in email address navigation (#1169) Seems to have changed when adding the domain-filter overview for email addresses, but not updated in the navigation. --- lib/navigation/00.froxlor.main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/navigation/00.froxlor.main.php b/lib/navigation/00.froxlor.main.php index d65819fb..f322fe85 100644 --- a/lib/navigation/00.froxlor.main.php +++ b/lib/navigation/00.froxlor.main.php @@ -38,7 +38,7 @@ return [ 'url' => 'customer_email.php?page=emails', 'label' => lng('menue.email.emails'), 'required_resources' => 'emails', - 'add_shortlink' => CurrentUser::canAddResource('emails') ? 'customer_email.php?page=emails&action=add' : null, + 'add_shortlink' => CurrentUser::canAddResource('emails') ? 'customer_email.php?page=email_domain&action=add' : null, ], [ 'url' => Settings::Get('panel.webmail_url'),