From 683557fa21a4a6265e8e1c8fc4e0a2c8208b3631 Mon Sep 17 00:00:00 2001 From: phl0 Date: Fri, 24 Jun 2016 13:50:26 +0200 Subject: [PATCH] Correct display of QRG --- include/tools.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tools.php b/include/tools.php index 30dc7b1..b114863 100644 --- a/include/tools.php +++ b/include/tools.php @@ -30,7 +30,7 @@ function startsWith($haystack, $needle) { } function getMHZ($freq) { - return substr($freq,0,3) . "." . substr($freq,3,3) . "." . substr($freq,6) . " Mhz"; + return substr($freq,0,3) . "." . substr($freq,3,6) . " MHz"; } function isProcessRunning($processname) { @@ -71,4 +71,4 @@ function checkSetup() { } error_reporting($el); } -?> \ No newline at end of file +?>