From cdcdf7d9128c3268fccd3d15c2507ccd2f7ba969 Mon Sep 17 00:00:00 2001 From: drigato Date: Fri, 21 Mar 2014 11:11:18 -0400 Subject: [PATCH] SAAS-382: Reimplement Storage Quota Changed status page to use new disk_usage value from cc_pref table. --- airtime_mvc/application/models/Systemstatus.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/models/Systemstatus.php b/airtime_mvc/application/models/Systemstatus.php index 231411f17..47c3953e7 100644 --- a/airtime_mvc/application/models/Systemstatus.php +++ b/airtime_mvc/application/models/Systemstatus.php @@ -218,13 +218,14 @@ class Application_Model_Systemstatus //connect to DB and find how much total space user has allocated. $totalSpace = Application_Model_Preference::GetDiskQuota(); - $path = $_SERVER['AIRTIME_BASE']."etc/airtime/num_bytes.ini"; + $usedSpace = Application_Model_Preference::getDiskUsage(); + /* $path = $_SERVER['AIRTIME_BASE']."etc/airtime/num_bytes.ini"; $arr = parse_ini_file($path); $usedSpace = 0; if ($arr !== false) { $usedSpace = $arr['num_bytes']; - } + } */ $partitions[$totalSpace] = new stdClass(); $partitions[$totalSpace]->totalSpace = $totalSpace;