TwoFactorAuth icon indicating copy to clipboard operation
TwoFactorAuth copied to clipboard

Array and string offset access syntax with curly braces is deprecated

Open tayyebi opened this issue 1 year ago • 0 comments

On line 113 $string .= $seed{intval( mt_rand( 0.0, $max ) )}; must change to $string .= $seed[intval( mt_rand( 0.0, $max ) )]; due to PHP 8.1 updates.

tayyebi avatar Nov 28 '23 17:11 tayyebi