From bbdc8afcaf3abae26c799cb65cfc9d60da290ed5 Mon Sep 17 00:00:00 2001 From: Anaggh S Date: Thu, 27 Feb 2020 03:08:27 +0530 Subject: [PATCH] Fix PHP 7.4 "Deprecated: Array and string offset access syntax with curly braces is deprecated" --- bl-kernel/helpers/text.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bl-kernel/helpers/text.class.php b/bl-kernel/helpers/text.class.php index 9f7093ea..2a53cebd 100644 --- a/bl-kernel/helpers/text.class.php +++ b/bl-kernel/helpers/text.class.php @@ -116,7 +116,7 @@ class Text { $characteres = "1234567890abcdefghijklmnopqrstuvwxyz!@#%^&*"; $text = ''; for($i=0; $i<$length; $i++) { - $text .= $characteres{rand(0,41)}; + $text .= $characteres[rand(0,41)]; } return $text; }