ftimme
2012-11-14 aa78fde6a92f66b84d626e114d8b54a5fb6ece0c
interface/web/monitor/show_log.php
@@ -30,10 +30,11 @@
require_once('../../lib/config.inc.php');
require_once('../../lib/app.inc.php');
require_once('tools.inc.php');
//* Check permissions for module
$app->auth->check_module_permissions('monitor');
$app->uses('tools_monitor');
// Loading the template
$app->uses('tpl');
@@ -41,7 +42,7 @@
$app->tpl->setInclude('content_tpl','templates/show_log.htm');
// Importing the GET values
$refresh = (isset($_GET["refresh"]))?intval($_GET["refresh"]):0;
$refresh = (isset($_GET["refresh"]))?$app->functions->intval($_GET["refresh"]):0;
$logParam = $_GET["log"];
/* Get some translations */
@@ -124,7 +125,7 @@
if(isset($record['data'])) {
   $data = unserialize($record['data']);
   $logData = nl2br($data);
   $logData = nl2br(htmlspecialchars($data));
   $app->tpl->setVar("log_data", $logData);
} else {
@@ -134,7 +135,7 @@
$app->tpl->setVar("list_head_txt", $title);
$app->tpl->setVar("log_id",$logId);
$app->tpl->setVar("list_desc_txt", $description);
$app->tpl->setVar("time", getDataTime($logId));
$app->tpl->setVar("time", $app->tools_monitor->getDataTime($logId));
$app->tpl->setVar("monTransDate", $monTransDate);
$app->tpl->setVar("monTransRefreshsq", $monTransRefreshsq);