소스 검색

Updated PHP file for Category to not include item:

Axel Nordh 3 년 전
부모
커밋
2801a27041
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      ServerFiles/Categories.php

+ 1 - 2
ServerFiles/Categories.php

@@ -23,6 +23,5 @@ $sth->setFetchMode(PDO::FETCH_ASSOC);
 
 $result = $sth->fetchAll();
 if (count($result) > 0) {
-    $json =  json_encode($result, JSON_UNESCAPED_UNICODE);
-    echo "{\"items\":" . $json . "}";
+    echo json_encode($result, JSON_UNESCAPED_UNICODE);
 }