summaryrefslogtreecommitdiff
path: root/html/pages/match.php
diff options
context:
space:
mode:
authorMatthijs Kuiper <info@matthijskuiper.nl>2017-02-12 20:30:01 +0100
committerGitHub <noreply@github.com>2017-02-12 20:30:01 +0100
commit66b162b5f01c996fd8a5cd4e570e31f8483cdffa (patch)
treedf404d4d8e26db5e564aece272c64896c38ce0f6 /html/pages/match.php
parent07b6b55355dc0555cf578067ff38e9e52c03fe7e (diff)
parent7abeb203d8b6d537a55b0dd9a1ccac32e6f948ec (diff)
Merge pull request #3 from sn3p/sn3p/fix-mysql-group-by-errors4.2.9
Fix MySQL ONLY_FULL_GROUP_BY errors
Diffstat (limited to 'html/pages/match.php')
-rwxr-xr-xhtml/pages/match.php4
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
+?>