From 02e53c51ad1169254b11b6d69b09379b3970f622 Mon Sep 17 00:00:00 2001
From: Prasad <prasad@vtiger.com>
Date: Wed, 23 Aug 2023 14:55:15 +0530
Subject: [PATCH] Fixed php7_count return value compat

---
 include/utils/VtlibUtils.php | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/include/utils/VtlibUtils.php b/include/utils/VtlibUtils.php
index df65533d6..d34eb446f 100644
--- a/include/utils/VtlibUtils.php
+++ b/include/utils/VtlibUtils.php
@@ -962,8 +962,10 @@ if (!function_exists('get_magic_quotes_gpc')) {
 }
 
 function php7_count($value) {
-	// PHP 8.x does not like count(null) or count(string)
-	return is_null($value) || !is_array($value) ? 0 : count($value);
+	// PHP 8.x does not allow count(null) or count(string)
+	if (is_null($value)) return 0;
+	if (!is_array($value)) return 1;
+	return count($value);
 }
 
 ?>
-- 
GitLab