From 2b3d7e757ea4eeed40fc13b04a9b794a2a5d5541 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 5 Jan 2012 09:09:28 -0800 Subject: [PATCH] Minor, fix number_format() warning. --- .../console/plugin/services/DarkConsoleServicesPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aphront/console/plugin/services/DarkConsoleServicesPlugin.php b/src/aphront/console/plugin/services/DarkConsoleServicesPlugin.php index 40a6503571..342c45d18b 100644 --- a/src/aphront/console/plugin/services/DarkConsoleServicesPlugin.php +++ b/src/aphront/console/plugin/services/DarkConsoleServicesPlugin.php @@ -178,7 +178,7 @@ class DarkConsoleServicesPlugin extends DarkConsolePlugin { $counts['All Services'] = array_sum($counts); $totals['Entire Page'] = $page_total; - $counts['Entire Page'] = '-'; + $counts['Entire Page'] = 0; $summary = array(); foreach ($totals as $type => $total) {