1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-02 20:57:26 +02:00

Fixes ArgumentCountError in e107_plugins/log/stats.php

Fixes: #3583
Caused by: 13f11e31a2
This commit is contained in:
Deltik
2018-12-23 04:34:48 -06:00
parent 188232a24e
commit 02c305ca93

View File

@@ -1140,7 +1140,7 @@ class siteStats
} }
else else
{ {
$text .= $tp->simpleParse($template['nostatistic']); $text .= $tp->simpleParse($template['nostatistic'], null);
} }
} }
return $text; return $text;
@@ -1275,7 +1275,7 @@ class siteStats
} }
else else
{ {
$text .= $tp->simpleParse($template['nostatistic']); $text .= $tp->simpleParse($template['nostatistic'], null);
} }
} }
return $text; return $text;
@@ -1364,7 +1364,7 @@ class siteStats
} }
else else
{ {
$text .= $tp->simpleParse($template['nostatistic']); $text .= $tp->simpleParse($template['nostatistic'], null);
} }
} }
return $text; return $text;
@@ -1468,7 +1468,7 @@ class siteStats
} }
else else
{ {
$text .= $tp->simpleParse($template['nostatistic']); $text .= $tp->simpleParse($template['nostatistic'], null);
} }
} }
@@ -1565,7 +1565,7 @@ class siteStats
} }
else else
{ {
$text .= $tp->simpleParse($template['nostatistic']); $text .= $tp->simpleParse($template['nostatistic'], null);
} }
} }
return $text; return $text;