diff options
author | Matthijs Kuiper <info@matthijskuiper.nl> | 2018-01-08 23:47:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-08 23:47:23 +0100 |
commit | e861eafbeae0560add7956530d76de6cc285be20 (patch) | |
tree | c32e746977fde711cecd716570989014bf2d3592 /html/pages/match_info.php | |
parent | 66b162b5f01c996fd8a5cd4e570e31f8483cdffa (diff) | |
parent | 730c20dd04b5753cb372a289923e39516d1f8b87 (diff) |
Merge pull request #5 from randommonk/develop4.3.0
Bumped version to 4.3. Added jpgraph stats developed by killerEye
Diffstat (limited to 'html/pages/match_info.php')
-rwxr-xr-x | html/pages/match_info.php | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/html/pages/match_info.php b/html/pages/match_info.php index 7645077..31edc2d 100755 --- a/html/pages/match_info.php +++ b/html/pages/match_info.php @@ -11,6 +11,7 @@ echo ' </tbody></table>
<br>';
include("pages/match_info_server.php");
+include("pages/match_info_charts.php");
$GLOBALS['gid'] = $gid;
$_GLOBALS['gid'] = $gid;
@@ -23,18 +24,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');
@@ -43,6 +44,13 @@ switch($real_gamename) { case "Bunny Track":
include("pages/match_info_bt.php");
break;
+
+ case "Tournament DeathMatch":
+ case "Tournament Team Game":
+ case "Tournament DeathMatch (insta)":
+ case "Tournament Team Game (insta)":
+ teamstats($mid, 'Match Summary');
+ break;
case "Extended Last Man Standing":
case "Extended Last Man Standing (insta)":
@@ -62,6 +70,7 @@ switch($real_gamename) { teamstats($mid, 'Player Summary');
}
}
+
if ($real_gamename == "Assault" or $real_gamename== "Assault (insta)") {
include("pages/match_info_other2.php");
@@ -74,4 +83,4 @@ if ($real_gamename == "Capture the Flag" or $real_gamename== "Capture the Flag ( include("pages/match_report.php");
}
-?>
+?>
\ No newline at end of file |