fixing error in log-viewing \(extended management buttons\)

This commit is contained in:
dg9vh 2016-08-19 16:32:09 +00:00
parent d554429975
commit 976e5a9ced
2 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ include "../config/config.php";
include "../include/tools.php"; include "../include/tools.php";
include "../include/functions.php"; include "../include/functions.php";
$fileName = MMDVMLOGPATH. "/MMDVM-".date(Y)."-".date(m)."-".date(d).".log"; $fileName = MMDVMLOGPATH."/".MMDVMLOGPREFIX."-".date("Y-m-d").".log";
?> ?>
<!doctype html> <!doctype html>
<html lang="es"> <html lang="es">
@ -46,7 +46,7 @@ $fileName = MMDVMLOGPATH. "/MMDVM-".date(Y)."-".date(m)."-".date(d).".log";
</div> </div>
<div class="panel panel-log"> <div class="panel panel-log">
<div class="panel-heading"> <div class="panel-heading">
<span class="label label-info">Fichero log <?php echo $fileName ?></span> <span class="label label-info">Viewing log <?php echo $fileName ?></span>
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-condensed"> <table class="table table-condensed">

View file

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