From 103ad6fe6d6fe5d4093c09f5e32a2354effe0352 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Mon, 4 Feb 2013 16:32:03 -0500 Subject: [PATCH] CC-4909: php warning -fixed --- airtime_mvc/application/models/Systemstatus.php | 1 + 1 file changed, 1 insertion(+) diff --git a/airtime_mvc/application/models/Systemstatus.php b/airtime_mvc/application/models/Systemstatus.php index efebfcbb7..2452f962f 100644 --- a/airtime_mvc/application/models/Systemstatus.php +++ b/airtime_mvc/application/models/Systemstatus.php @@ -225,6 +225,7 @@ class Application_Model_Systemstatus $usedSpace = $arr['num_bytes']; } + $partitions[$totalSpace] = new stdClass(); $partitions[$totalSpace]->totalSpace = $totalSpace; $partitions[$totalSpace]->totalFreeSpace = $totalSpace - $usedSpace; Logging::info($partitions[$totalSpace]->totalFreeSpace);