From c487178a483117152a10b2e6c2de73bc14fdd141 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Wed, 21 Apr 2021 16:52:49 +1000 Subject: [PATCH] [REF] Fix Security status check urls to work on WordPress --- CRM/Utils/Check/Component/Security.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Utils/Check/Component/Security.php b/CRM/Utils/Check/Component/Security.php index 943add05d4..2036e1b015 100644 --- a/CRM/Utils/Check/Component/Security.php +++ b/CRM/Utils/Check/Component/Security.php @@ -28,6 +28,9 @@ class CRM_Utils_Check_Component_Security extends CRM_Utils_Check_Component { case 'Joomla': return '/media/'; + case 'WordPress': + return '/uploads/'; + default: return '/files/'; } -- 2.25.1