From b847f959876d1aa6c2c0279483820a93092e1c6a Mon Sep 17 00:00:00 2001 From: demonspork Date: Thu, 11 Mar 2021 14:01:55 -0600 Subject: [PATCH] Add "Settings" link to Domains list Skip the step of clicking on the domain then clicking settings. I very rarely want to edit a domain's basic settings, 99% of the time I am wanting to either manage the domain or edit domain_settings. --- core/domains/domains.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/domains/domains.php b/core/domains/domains.php index 742cc3bbc5..22deeb6767 100644 --- a/core/domains/domains.php +++ b/core/domains/domains.php @@ -267,6 +267,10 @@ echo " \n"; echo " \n"; echo " ".$text['label-manage'].""; + if (permission_exists('domain_setting_view')) { + $list_setting_url = PROJECT_PATH."/core/domain_settings/domain_settings.php?id=".urlencode($row['domain_uuid']); + echo " | ".$text['button-settings']; + } echo " \n"; if (permission_exists('domain_edit')) { echo " \n";