From 040d3f83b882ebdbbd52f30721e4dc2e56a3907e Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 4 Feb 2020 19:14:14 +0900 Subject: [PATCH] Update security.php --- system/security.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/system/security.php b/system/security.php index 23bfd87..1129ea9 100644 --- a/system/security.php +++ b/system/security.php @@ -289,16 +289,16 @@ if(!check_function_exists("get_uncompressed_text")) { $_text = gzinflate(base64_decode($text)); break; case "gzip": - $_text = get_hashed_text(gzdecode($text), "base64"); + $_text = gzdecode(base64_decode($text)); break; case "zlib": - $_text = get_hashed_text(gzuncompress($text), "base64"); + $_text = gzuncompress(base64_decode($text)); break; case "bzip": - $_text = get_hashed_text(bzuncompress($text), "base64"); + $_text = bzuncompress(base64_decode($text)); break; case "lzf": - $_text = get_hashed_text(lzf_decompress($text), "base64"); + $_text = lzf_decompress(base64_decode($text)); break; default: $_text = $text;