deprecated

This commit is contained in:
2026-07-28 08:20:08 +02:00
parent 06da70baec
commit eee55d607b
2 changed files with 2 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ $_m['pre'] = '';
$_m['salt'] = '';
$_sendermail = 'noreply@.de';
$_contactmail = '';
$_smtp['srv'] = 'mail.seemsleg.it';
$_smtp['user'] = 'noreply@.de';
$_smtp['pw'] = '';

View File

@@ -38,7 +38,7 @@ function random(int $name_laenge): string {
$zeichen = "abcedfghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRTSUVWXYZ0123456789";
$name_neu = "";
@mt_srand ( ( double ) microtime () * 1000000 );
@mt_srand ( ( float ) microtime () * 1000000 );
for($i = 0; $i < $name_laenge; $i ++) {
$r = mt_rand ( 0, strlen ( $zeichen ) - 1 );
$name_neu .= $zeichen[$r];