_admin2의 query를 수정.

- 메시지 전송을 새로 만든 구현을 사용함.
- 테이블 두개 (MEMBER, SYSTEM)을 소문자로 변경
This commit is contained in:
2018-04-16 22:31:54 +09:00
parent bc3a8fefd8
commit 4b33461c70
19 changed files with 280 additions and 212 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ extractMissingPostToGlobals();
$rootDB = RootDB::db();
//회원 테이블에서 정보확인
$member = $rootDB->queryFirstRow('SELECT `no`, id, picture, grade, `name` FROM MEMBER WHERE no=%i', $userID);
$member = $rootDB->queryFirstRow('SELECT `no`, id, picture, grade, `name` FROM member WHERE no=%i', $userID);
if (!$member) {
MessageBox("잘못된 접근입니다!!!");