mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 12:00:55 +01:00
Minor, fix number_format() warning.
This commit is contained in:
parent
015a6d2989
commit
2b3d7e757e
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ class DarkConsoleServicesPlugin extends DarkConsolePlugin {
|
||||||
$counts['All Services'] = array_sum($counts);
|
$counts['All Services'] = array_sum($counts);
|
||||||
|
|
||||||
$totals['Entire Page'] = $page_total;
|
$totals['Entire Page'] = $page_total;
|
||||||
$counts['Entire Page'] = '-';
|
$counts['Entire Page'] = 0;
|
||||||
|
|
||||||
$summary = array();
|
$summary = array();
|
||||||
foreach ($totals as $type => $total) {
|
foreach ($totals as $type => $total) {
|
||||||
|
|
Loading…
Reference in a new issue