summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions_system_cpu.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-10-18 20:44:48 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-10-18 20:44:48 -0400
commit257b23a06ed1bac8e2a64b802fd26a7b390fffdc (patch)
tree8c5786ffe9a7778bbdad0c423b3297c06cf60ce5 /pts-core/functions/pts-functions_system_cpu.php
parent62e2e7b2ef8f8b064f75071194efc8b0db5caf7c (diff)
downloadphoronix-test-suite-upstream-257b23a06ed1bac8e2a64b802fd26a7b390fffdc.tar.gz
phoronix-test-suite-upstream-257b23a06ed1bac8e2a64b802fd26a7b390fffdc.tar.xz
phoronix-test-suite-upstream-257b23a06ed1bac8e2a64b802fd26a7b390fffdc.zip
pts-core: Automatically append periods to test notes
Diffstat (limited to 'pts-core/functions/pts-functions_system_cpu.php')
-rw-r--r--pts-core/functions/pts-functions_system_cpu.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/pts-core/functions/pts-functions_system_cpu.php b/pts-core/functions/pts-functions_system_cpu.php
index b49f18c..7a6f44b 100644
--- a/pts-core/functions/pts-functions_system_cpu.php
+++ b/pts-core/functions/pts-functions_system_cpu.php
@@ -227,15 +227,15 @@ function pts_processor_power_savings_enabled()
if(strpos($cpu, "AMD") !== false)
{
- $return_string = "AMD Cool n Quiet was enabled.";
+ $return_string = "AMD Cool n Quiet was enabled";
}
else if(strpos($cpu, "Intel") !== false)
{
- $return_string = "Intel SpeedStep Technology was enabled.";
+ $return_string = "Intel SpeedStep Technology was enabled";
}
else
{
- $return_string = "The CPU was in a power-savings mode.";
+ $return_string = "The CPU was in a power-savings mode";
}
}
}