This commit is contained in:
Denny Dai 2015-07-02 22:46:39 +08:00
parent d59de2732f
commit 954e096809

View File

@ -34,9 +34,9 @@ function plugin_github_check($title, $check)
global $msg; global $msg;
if (!empty($check)) { if (!empty($check)) {
return @$msg .= "\n".$title.": ".$check; return @$msg .= "\n".$title.": ".$check;
}elseif ($check == true){ }elseif ($check === true){
return @$msg .= "\n".$title.": True"; return @$msg .= "\n".$title.": True";
}elseif ($check == false){ }elseif ($check === false){
return @$msg .= "\n".$title.": False"; return @$msg .= "\n".$title.": False";
} }
} }