This commit is contained in:
Denny Dai 2015-07-02 22:46:39 +08:00
parent d59de2732f
commit 954e096809
1 changed files with 2 additions and 2 deletions

View File

@ -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";
}
}