diff options
author | Matthijs Kuiper <info@matthijskuiper.nl> | 2017-02-04 23:57:49 +0100 |
---|---|---|
committer | Matthijs Kuiper <info@matthijskuiper.nl> | 2017-02-06 23:21:12 +0100 |
commit | 7abeb203d8b6d537a55b0dd9a1ccac32e6f948ec (patch) | |
tree | e09f373a1441fe6b7acbb7672e671e5fb1044d4a /html/pages/match_info.php | |
parent | c110e3ac9e2fac2f88f4e00fa05579ab25afc3fc (diff) |
Fix MySQL ONLY_FULL_GROUP_BY errors
Diffstat (limited to 'html/pages/match_info.php')
-rwxr-xr-x | html/pages/match_info.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/html/pages/match_info.php b/html/pages/match_info.php index 27b6669..7645077 100755 --- a/html/pages/match_info.php +++ b/html/pages/match_info.php @@ -23,18 +23,18 @@ switch($real_gamename) { case "Assault (insta)":
include("pages/match_info_ass.php");
break;
-
+
case "Capture the Flag":
case "Capture the Flag (insta)":
include("pages/match_info_ctf.php");
teamstats($mid, 'Match Summary');
break;
-
+
case "Domination":
case "Domination (insta)":
teamstats($mid, 'Match Summary', 'dom_cp', 'Dom Pts');
break;
-
+
case "JailBreak":
case "JailBreak (insta)":
teamstats($mid, 'Match Summary', 'ass_obj', 'Team Releases');
@@ -62,7 +62,6 @@ switch($real_gamename) { teamstats($mid, 'Player Summary');
}
}
-
if ($real_gamename == "Assault" or $real_gamename== "Assault (insta)") {
include("pages/match_info_other2.php");
@@ -75,4 +74,4 @@ if ($real_gamename == "Capture the Flag" or $real_gamename== "Capture the Flag ( include("pages/match_report.php");
}
-?>
\ No newline at end of file +?>
|