Summary
Description: Unnamed repository; edit this file to name it for gitweb.
Last Change: Wed 2/3/10 13:04
Recent Commits
>
--git a/pts-core/functions/pts-functions_system_cpu.php b/pts-core/functions/pts-functions_system_cpu.php
index 9371c62..8c547e7 100644
--- a/pts-core/functions/pts-functions_system_cpu.php
+++ b/pts-core/functions/pts-functions_system_cpu.php
@@ -12,7 +12,11 @@ function read_cpuinfo_values($attribute)
{
$line = explode(": ", $line);
$this_attribute = trim($line[0]);
- $this_value = trim($line[1]);
+
+ if(count($line) > 1)
+ $this_value = trim($line[1]);
+ else
+ $this_value = "";
if($this_attribute == $attribute)
array_push($cpuinfo_matches, $this_value);
<
Copyright © 2010 by Phoronix Media