Skip to content
Snippets Groups Projects
Commit 773b03f8 authored by Thom's avatar Thom :tools:
Browse files

Show memory usage only in MB's (#3651)

parent 008c5614
No related branches found
No related tags found
1 merge request!1094Show memory usage in MB's (#3651)
...@@ -187,7 +187,7 @@ class tools_monitor { ...@@ -187,7 +187,7 @@ class tools_monitor {
$memory = number_format($value / 1048576); $memory = number_format($value / 1048576);
$html .= '<tr> $html .= '<tr>
<td>' . $key . ':</td> <td>' . $key . ':</td>
<td>' . $memory . 'MB (' . $value . ')</td> <td>' . $memory . ' MB</td>
</tr>'; </tr>';
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment