We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c62c9d commit 008c561Copy full SHA for 008c561
interface/lib/classes/tools_monitor.inc.php
@@ -184,9 +184,10 @@ function showMemUsage () {
184
185
foreach($data as $key => $value) {
186
if ($key != '') {
187
+ $memory = number_format($value / 1048576);
188
$html .= '<tr>
189
<td>' . $key . ':</td>
- <td>' . $value . '</td>
190
+ <td>' . $memory . 'MB (' . $value . ')</td>
191
</tr>';
192
}
193
0 commit comments