From 773b03f8ac50b3f6d0acc6db19d7e963f22b94c1 Mon Sep 17 00:00:00 2001
From: thom <thom@amsterdamtech.nl>
Date: Tue, 11 Aug 2020 17:01:54 +0200
Subject: [PATCH] Show memory usage only in MB's (#3651)

---
 interface/lib/classes/tools_monitor.inc.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/interface/lib/classes/tools_monitor.inc.php b/interface/lib/classes/tools_monitor.inc.php
index b8785e4fcc..9bf4e861de 100644
--- a/interface/lib/classes/tools_monitor.inc.php
+++ b/interface/lib/classes/tools_monitor.inc.php
@@ -187,7 +187,7 @@ class tools_monitor {
 					$memory = number_format($value / 1048576);
 					$html .= '<tr>
                         <td>' . $key . ':</td>
-                        <td>' . $memory . 'MB (' . $value . ')</td>
+                        <td>' . $memory . ' MB</td>
                         </tr>';
 				}
 			}
-- 
GitLab