Open tayyebi opened 11 months ago
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.
$string .= $seed{intval( mt_rand( 0.0, $max ) )};
$string .= $seed[intval( mt_rand( 0.0, $max ) )];
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.