missing semi-colon

This commit is contained in:
sparkyx 2023-02-09 19:59:11 +01:00
parent 035119785a
commit 50d5ea9b40

View file

@ -258,7 +258,7 @@ function display_file_config($p_array,$from_setup=1,$p_os=1)
print ("// if you activate the possibility to reinitialize password by email\r\n");
print ("// define('ADMIN_WEB', 'www-data@localhost');\r\n");
print ("// Define a random session key if you work with different version of NOALYSS\r\n");
printf ("define ('SESSION_KEY','%s')",generate_random_string(10)) ;
printf ("define ('SESSION_KEY','%s');",generate_random_string(10)) ;
}
/*!\brief create the config file
@ -273,4 +273,4 @@ function config_file_create($p_array,$from_setup,$p_os=1)
fputs($hFile, $r);
fclose($hFile);
}
?>
?>