From 954e09680915bf125265cc13b5fd915910f13dfa Mon Sep 17 00:00:00 2001 From: Denny Dai Date: Thu, 2 Jul 2015 22:46:39 +0800 Subject: [PATCH] fix.... --- plugins/github.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/github.php b/plugins/github.php index f9deaa1..cc95036 100644 --- a/plugins/github.php +++ b/plugins/github.php @@ -34,9 +34,9 @@ function plugin_github_check($title, $check) global $msg; if (!empty($check)) { return @$msg .= "\n".$title.": ".$check; - }elseif ($check == true){ + }elseif ($check === true){ return @$msg .= "\n".$title.": True"; - }elseif ($check == false){ + }elseif ($check === false){ return @$msg .= "\n".$title.": False"; } }