From 897a8f6cdf555c0904e222a3d4e8f12a78cfe3cb Mon Sep 17 00:00:00 2001 From: sparkyx Date: Thu, 9 Feb 2023 19:59:11 +0100 Subject: [PATCH] missing semi-colon --- include/lib/config_file.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/lib/config_file.php b/include/lib/config_file.php index 1aefa53c7..3aa8a569f 100644 --- a/include/lib/config_file.php +++ b/include/lib/config_file.php @@ -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); } -?> \ No newline at end of file +?>