server_basic_info 문법 오류 수정

This commit is contained in:
2018-03-17 06:20:50 +09:00
parent fa56fc0318
commit ac28032032
+2 -3
View File
@@ -3,7 +3,7 @@ include "lib.php";
include "func.php";
if(!getUserID()){
jsonReturn([
returnJson([
'game'=>'x',
'me'=>'no'
]);
@@ -71,7 +71,6 @@ $game['npcCnt'] = $npcCnt;
$generalID = getGeneralID(false, false);
$userGrade = getUserGrade();
$me = [
'blocked'=> ($userGrade == 0)
];
if($generalID){
@@ -88,7 +87,7 @@ if($generalID){
}
//TODO: 이를 표현하는 방법은 '이전 버전'의 serverListPost.php를 참고할 것.
jsonReturn([
returnJson([
'game'=>$game,
'me'=>$me
]);