From 02c305ca936b4976bf52b564248bf8ca1fd38696 Mon Sep 17 00:00:00 2001 From: Deltik Date: Sun, 23 Dec 2018 04:34:48 -0600 Subject: [PATCH] Fixes ArgumentCountError in e107_plugins/log/stats.php Fixes: #3583 Caused by: 13f11e31a21a69de43773b222c504b955bfde8d8 --- e107_plugins/log/stats.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/e107_plugins/log/stats.php b/e107_plugins/log/stats.php index ec7a2946a..248429d30 100644 --- a/e107_plugins/log/stats.php +++ b/e107_plugins/log/stats.php @@ -1140,7 +1140,7 @@ class siteStats } else { - $text .= $tp->simpleParse($template['nostatistic']); + $text .= $tp->simpleParse($template['nostatistic'], null); } } return $text; @@ -1275,7 +1275,7 @@ class siteStats } else { - $text .= $tp->simpleParse($template['nostatistic']); + $text .= $tp->simpleParse($template['nostatistic'], null); } } return $text; @@ -1364,7 +1364,7 @@ class siteStats } else { - $text .= $tp->simpleParse($template['nostatistic']); + $text .= $tp->simpleParse($template['nostatistic'], null); } } return $text; @@ -1468,7 +1468,7 @@ class siteStats } else { - $text .= $tp->simpleParse($template['nostatistic']); + $text .= $tp->simpleParse($template['nostatistic'], null); } } @@ -1565,7 +1565,7 @@ class siteStats } else { - $text .= $tp->simpleParse($template['nostatistic']); + $text .= $tp->simpleParse($template['nostatistic'], null); } } return $text;