From dedebe5ecb4b49b547e499a24f3d615e86716fc1 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 26 Feb 2019 11:31:08 +0900 Subject: [PATCH] Update base.php --- system/base.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/base.php b/system/base.php index ebe0904..83c039f 100644 --- a/system/base.php +++ b/system/base.php @@ -13,13 +13,13 @@ if(!function_exists("check_invalid_function")) { if(is_array($fn)) { foreach($fn as $k=>$v) { - if(!check_valid_function($v)) { + if(!function_exists($v)) { $status = $k; break; } } } else { - if(!check_valid_function($fn)) { + if(!function_exists($fn)) { $status = 0; } }