Merge pull request #21 from phl0/correctFrequency
Correct display of QRG
This commit is contained in:
commit
8b842c4295
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue