mirror of
https://github.com/e107inc/e107.git
synced 2025-08-02 12:48:26 +02:00
Fixes ArgumentCountError in e107_plugins/log/stats.php
Fixes: #3583
Caused by: 13f11e31a2
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user