mirror of
https://github.com/e107inc/e107.git
synced 2025-03-21 04:49:51 +01:00
Merge pull request #3591 from Deltik/fix-3583
Fixes ArgumentCountError in e107_plugins/log/stats.php
This commit is contained in:
commit
7abf393117
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user