diff --git a/config/config.php b/config/config.php
index aaa39a3..b31d919 100644
--- a/config/config.php
+++ b/config/config.php
@@ -71,9 +71,18 @@ switch (DISTRIBUTION) {
define("CONFIGFILENAME", "ircddbgateway");
define("GATEWAYCONFIGPATH", CONFIGPATH . "/" . CONFIGFILENAME);
+// set time to refresh page
define("REFRESHAFTER", "60");
+
+// enables CPU-temperature alert
define("TEMPERATUREALERT", true);
+
+// defines temperature of warning
define("TEMPERATUREHIGHLEVEL", 60);
+
+// enables progress-bars
define("SHOWPROGRESSBARS", true);
+
+// defines number of lines in last heard list
define("LHLINES", 20);
?>
\ No newline at end of file
diff --git a/include/functions.php b/include/functions.php
index 7e75d20..9f7baae 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -1,6 +1,7 @@
";
if ($linkLog = fopen(LINKLOGPATH,'r')) {
while ($linkLine = fgets($linkLog)) {
@@ -266,6 +274,7 @@ function getDSTARLinks() {
}
function getActualLink($logLines, $mode) {
+ // returns actual link state of specific mode
//M: 2016-05-02 07:04:10.504 D-Star link status set to "Verlinkt zu DCS002 S"
//M: 2016-04-03 16:16:18.638 DMR Slot 2, received network voice header from 4000 to 2625094
//M: 2016-04-03 19:30:03.099 DMR Slot 2, received network voice header from 4020 to 2625094
diff --git a/include/lh.php b/include/lh.php
index 9cec26b..7582014 100644
--- a/include/lh.php
+++ b/include/lh.php
@@ -4,10 +4,6 @@ $lastHeard = getLastHeard($logLines);
Last Heard List of today's callsigns.
-
-
diff --git a/include/repeaterinfo.php b/include/repeaterinfo.php
index 2cd3ab7..87c7584 100644
--- a/include/repeaterinfo.php
+++ b/include/repeaterinfo.php
@@ -1,10 +1,7 @@
Repeater Info
-
-
+
diff --git a/index.php b/index.php
index d58e39d..c2fc3c1 100644
--- a/index.php
+++ b/index.php
@@ -4,6 +4,7 @@ $time = explode(' ', $time);
$time = $time[1] + $time[0];
$start = $time;
+// do not touch this includes!!! Never ever!!!
include "config/config.php";
include "include/tools.php";
include "include/functions.php";
@@ -29,6 +30,7 @@ include "include/functions.php";
MMDVMHost v by G4KLX
|