Added productname \\& Version, changed wording

This commit is contained in:
dg9vh 2016-07-11 05:49:37 +00:00
parent c0e01e261a
commit 7a86f03e01
2 changed files with 5 additions and 1 deletions

View file

@ -8,6 +8,7 @@ $start = $time;
include "config/config.php"; include "config/config.php";
include "include/tools.php"; include "include/tools.php";
include "include/functions.php"; include "include/functions.php";
include "version.php";
?> ?>
<!doctype html> <!doctype html>
<html lang="de"> <html lang="de">
@ -66,7 +67,7 @@ if (defined("ENABLEYSFGATEWAY")) {
<?php <?php
$datum = date("Y-m-d"); $datum = date("Y-m-d");
$uhrzeit = date("H:i:s"); $uhrzeit = date("H:i:s");
echo "Last Update $datum, $uhrzeit"; echo "MMDVMHost-Dashboard V ".VERSION." | Last Reload $datum, $uhrzeit";
$time = microtime(); $time = microtime();
$time = explode(' ', $time); $time = explode(' ', $time);
$time = $time[1] + $time[0]; $time = $time[1] + $time[0];

3
version.php Normal file
View file

@ -0,0 +1,3 @@
<?php
define("VERSION", "20160711-1");
?>