From 02ddd9bc1e2b5dda0dd3b103cec08808ba22bb70 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sat, 11 May 2019 15:27:08 +0900 Subject: [PATCH] Update security.php --- system/security.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/security.php b/system/security.php index 2d1e08b..a174d38 100644 --- a/system/security.php +++ b/system/security.php @@ -256,7 +256,7 @@ if(!check_function_exists("get_salt")) { $salt = ""; $config = get_config(); - if(!array_key_equals("saltenable", $config, 1)) { + if(!array_key_equals("saltdisabled", $config, 1)) { $salt = get_value_in_array("salt", $config, make_random_id(16)); }