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.php | |
parent | c110e3ac9e2fac2f88f4e00fa05579ab25afc3fc (diff) |
Fix MySQL ONLY_FULL_GROUP_BY errors
Diffstat (limited to 'html/pages/match.php')
-rwxr-xr-x | html/pages/match.php | 4 |
1 files changed, 2 insertions, 2 deletions
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 +?>
|