From 78d7ea32a400fb1e3c1c3050641123dc092b0c38 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 26 Feb 2019 11:22:05 +0900 Subject: [PATCH] Update base.php --- system/base.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/system/base.php b/system/base.php index cb04bb6..f9eae08 100644 --- a/system/base.php +++ b/system/base.php @@ -6,7 +6,7 @@ * @brief Base module */ -// check function +// check invaild function (mixed) if(!function_exists("check_invaild_function")) { function check_invaild_function($fn) { $status = -1; @@ -28,6 +28,7 @@ if(!function_exists("check_invaild_function")) { return $status; } +// check vaild function (bool) if(!function_exists("check_vaild_function")) { function check_vaild_function($fn) { return (check_invaild_function($fn) == -1);