From 7abeb203d8b6d537a55b0dd9a1ccac32e6f948ec Mon Sep 17 00:00:00 2001 From: Matthijs Kuiper Date: Sat, 4 Feb 2017 23:57:49 +0100 Subject: Fix MySQL ONLY_FULL_GROUP_BY errors --- html/pages/match.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'html/pages/match.php') diff --git a/html/pages/match.php b/html/pages/match.php index 22a0399..8dfcee1 100755 --- a/html/pages/match.php +++ b/html/pages/match.php @@ -2,9 +2,9 @@ $mid = preg_replace('/\D/', '', $_GET[mid]); $pid = preg_replace('/\D/', '', $_GET[pid]); -IF ($pid != "") { +if ($pid != "") { include("match_player.php"); } else { include("match_info.php"); } -?> \ No newline at end of file +?> -- cgit