FIX_Velmurugan me to increase the rand_string 6 into 12

This commit is contained in:
sanjeev.p 2025-12-23 18:15:00 +05:30
parent 64ac479c30
commit f73a3e1cc5

View File

@ -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);