From ae68a06f71afee71fca373e70b6eb9f226fded0e Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Fri, 1 Sep 2017 07:43:11 +0200 Subject: [PATCH] GeneralMailStatistics.js: rename traffic_in/out to bytes_in/out --- js/GeneralMailStatistics.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/GeneralMailStatistics.js b/js/GeneralMailStatistics.js index ed2be73..e9a65c2 100644 --- a/js/GeneralMailStatistics.js +++ b/js/GeneralMailStatistics.js @@ -119,12 +119,12 @@ Ext.define('PMG.GeneralMailStatistics', { res.push({ name: gettext("Incoming Mail Traffic"), - value: Ext.Number.toFixed(data.traffic_in/(1024*1024), 2) + ' MByte' + value: Ext.Number.toFixed(data.bytes_in/(1024*1024), 2) + ' MByte' }); res.push({ name: gettext("Outgoing Mail Traffic"), - value: Ext.Number.toFixed(data.traffic_out/(1024*1024), 2) + ' MByte' + value: Ext.Number.toFixed(data.bytes_out/(1024*1024), 2) + ' MByte' }); return res; },