summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics/pages
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/statistics/pages')
-rw-r--r--modules-available/statistics/pages/machine.inc.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules-available/statistics/pages/machine.inc.php b/modules-available/statistics/pages/machine.inc.php
index 677ff580..f3af4f47 100644
--- a/modules-available/statistics/pages/machine.inc.php
+++ b/modules-available/statistics/pages/machine.inc.php
@@ -143,21 +143,21 @@ class SubPage
if (preg_match_all('/##### ([^#]+) #+$(.*?)^#####/ims', $client['data'] . '########', $out, PREG_SET_ORDER)) {
foreach ($out as $section) {
if ($section[1] === 'CPU') {
- Parser::parseCpu($client, $section[2]);
+ HardwareParser::parseCpu($client, $section[2]);
}
if ($section[1] === 'dmidecode') {
- Parser::parseDmiDecode($client, $section[2]);
+ HardwareParser::parseDmiDecode($client, $section[2]);
}
if ($section[1] === 'Partition tables') {
- Parser::parseHdd($hdds, $section[2]);
+ HardwareParser::parseHdd($hdds, $section[2]);
}
if ($section[1] === 'PCI ID') {
$client['lspci1'] = $client['lspci2'] = array();
- Parser::parsePci($client['lspci1'], $client['lspci2'], $section[2]);
+ HardwareParser::parsePci($client['lspci1'], $client['lspci2'], $section[2]);
}
if (isset($hdds['hdds']) && $section[1] === 'smartctl') {
// This currently requires that the partition table section comes first...
- Parser::parseSmartctl($hdds['hdds'], $section[2]);
+ HardwareParser::parseSmartctl($hdds['hdds'], $section[2]);
}
}
}