From 3457a490dc8c9d92d23c540964a4e2d965c1c464 Mon Sep 17 00:00:00 2001 From: Matthijs Kuiper Date: Sun, 14 Jan 2018 21:17:30 +0100 Subject: Fix passing too few function arguments errors --- html/import/import_renderer-ctf.php | 53 +++++++++++++++++-------------------- 1 file changed, 25 insertions(+), 28 deletions(-) (limited to 'html/import/import_renderer-ctf.php') diff --git a/html/import/import_renderer-ctf.php b/html/import/import_renderer-ctf.php index 0c6db6f..a31c243 100644 --- a/html/import/import_renderer-ctf.php +++ b/html/import/import_renderer-ctf.php @@ -1,30 +1,27 @@ +300 && count(array_unique($playernames))>=2) { - - try { - $safe_uid = mysqli_real_escape_string($GLOBALS["___mysqli_link"], $uid); - - prepCTFdata($safe_uid); - - renderScoreGraph($safe_uid); - - // Get relevant data - list($datafrags, $derivfrags, $topFraggers,$counter,$datafragsteam,$derivfragsteam,$topTeams) = parseDMdata($safe_uid); - - renderFragBarsTeams($datafragsteam,$derivfragsteam,$topTeams,$counter); - - if($playernumberofteams == 2) - renderDataPickups($safe_uid); - - } catch (Exception $e) { - - // Do nothing, but simply do not block import - - } +// Only run script if at least 5 minutes were played +if (($time_gameend-$time_gamestart)>300 && count(array_unique($playernames))>=2) { + try { + $safe_uid = mysqli_real_escape_string($GLOBALS["___mysqli_link"], $uid); + + prepCTFdata($safe_uid); + + renderScoreGraph($safe_uid); + + // Get relevant data + list($datafrags, $derivfrags, $topFraggers, $counter, $datafragsteam, $derivfragsteam, $topTeams) = parseDMdata($safe_uid); + + renderFragBarsTeams($datafragsteam, $derivfragsteam, $topTeams, $counter); + + if ($playernumberofteams == 2) + renderDataPickups($safe_uid); + + } catch (Exception $e) { + // Do nothing, but simply do not block import } -?> \ No newline at end of file +} + +?> -- cgit