From 7332c9bd9d16f3a9e5da9322faa0c9baeff7fdb3 Mon Sep 17 00:00:00 2001 From: Nicolas Ganivet Date: Thu, 3 Sep 2015 18:41:47 -0600 Subject: [PATCH] corrects style issue --- CRM/Utils/Check/Security.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/Check/Security.php b/CRM/Utils/Check/Security.php index 6e5dc7f903..a8f5b24ce9 100644 --- a/CRM/Utils/Check/Security.php +++ b/CRM/Utils/Check/Security.php @@ -102,7 +102,7 @@ class CRM_Utils_Check_Security { $url[] = $upload_url[0]; if ($log_path = explode($filePathMarker, $log_filename)) { // CRM-17149: check if debug log path includes $filePathMarker - if (sizeof($log_path) > 1) { + if (count($log_path) > 1) { $url[] = $log_path[1]; $log_url = implode($filePathMarker, $url); $headers = @get_headers($log_url); -- 2.25.1