From f73a3e1cc52a33a31e9e13c897fbf33b936f5be9 Mon Sep 17 00:00:00 2001 From: "sanjeev.p" Date: Tue, 23 Dec 2025 18:15:00 +0530 Subject: [PATCH] FIX_Velmurugan me to increase the rand_string 6 into 12 --- app/Helpers/utility_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Helpers/utility_helper.php b/app/Helpers/utility_helper.php index 9095986c..0a6d9e51 100755 --- a/app/Helpers/utility_helper.php +++ b/app/Helpers/utility_helper.php @@ -238,7 +238,7 @@ if (!function_exists('generate_download_link')) { } if (!function_exists('generate_random_alphanumeric')) { - function generate_random_alphanumeric($length = 6) { + function generate_random_alphanumeric($length = 12) { $random_string = ''; for ($i = 0; $i < $length; $i++) { $random_ascii = rand(0, 61);