+
Last Heard List of today's callsigns.
+
diff --git a/include/repeaterinfo.php b/include/repeaterinfo.php
index 2989059..2cd3ab7 100644
--- a/include/repeaterinfo.php
+++ b/include/repeaterinfo.php
@@ -1,9 +1,9 @@
Repeater Info
-
+
diff --git a/include/tools.php b/include/tools.php
index c4d7c0e..ccfa6fd 100644
--- a/include/tools.php
+++ b/include/tools.php
@@ -12,15 +12,15 @@ function format_time($seconds) {
}
if ($hours > 0) {
$uptimeString .= (($days > 0) ? ", " : "") . $hours;
- $uptimeString .= (($hours == 1) ? " hour" : " hours");
+ $uptimeString .= (($hours == 1) ? " hr" : " hrs");
}
if ($mins > 0) {
$uptimeString .= (($days > 0 || $hours > 0) ? ", " : "") . $mins;
- $uptimeString .= (($mins == 1) ? " minute" : " minutes");
+ $uptimeString .= (($mins == 1) ? " min" : " mins");
}
if ($secs > 0) {
$uptimeString .= (($days > 0 || $hours > 0 || $mins > 0) ? ", " : "") . $secs;
- $uptimeString .= (($secs == 1) ? " second" : " seconds");
+ $uptimeString .= (($secs == 1) ? " s" : " s");
}
return $uptimeString;
}
diff --git a/index.php b/index.php
index 14e0ea2..7c19294 100644
--- a/index.php
+++ b/index.php
@@ -25,7 +25,7 @@ include "include/functions.php";