_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
@@ -56,7 +56,7 @@ function doAdminPost($action, $notice, $server){
$response = ['result' => 'FAIL'];
if($action == 'notice') {
RootDB::db()->update('SYSTEM', ['NOTICE'=>$notice], true);
RootDB::db()->update('system', ['NOTICE'=>$notice], true);
$response['result'] = 'SUCCESS';
return $response;
}