From 58f9da2611826b25f60a91ae483c7234359fa91f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=A2=E1=84=91=E1=85=B3=E1=86=AF=20=E1=84=82?= =?UTF-8?q?=E1=85=A9=E1=84=90=E1=85=B3=E1=84=87=E1=85=AE=E1=86=A8?= Date: Sat, 30 Mar 2019 17:30:48 +0900 Subject: [PATCH] Fix: db table name App -> app --- src/web/server/record/request_app_player_record_list.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/web/server/record/request_app_player_record_list.php b/src/web/server/record/request_app_player_record_list.php index b49dc81..7398fee 100644 --- a/src/web/server/record/request_app_player_record_list.php +++ b/src/web/server/record/request_app_player_record_list.php @@ -118,7 +118,7 @@ function get_player_record_count($maestro_id, $where_statement, $limit_count) { $query = " SELECT COUNT(*) - FROM best_record BR, player P, App A + FROM best_record BR, player P, app A WHERE BR.MaestroID = ? AND ".$where_statement." "; @@ -144,7 +144,7 @@ function get_player_record_total_count($maestro_id, $where_statement) { $query = " SELECT COUNT(*) - FROM best_record BR, player P, App A + FROM best_record BR, player P, app A WHERE BR.MaestroID = ? AND ".$where_statement." "; @@ -167,7 +167,7 @@ function get_player_record_list($maestro_id, $where_statement, $limit_count) { $query = " SELECT DATE(BR.RecordDateTime) AS Date, TIME(BR.RecordDateTime) AS Time, P.Name AS Name, A.KoreanName AS Subject, BR.BestRecord AS Record - FROM best_record BR, player P, App A + FROM best_record BR, player P, app A WHERE BR.MaestroID = ? AND ".$where_statement." ORDER BY BR.RecordDateTime DESC ";