From d9bcf68e395d6156645a7974b1a992aa6e6c00aa Mon Sep 17 00:00:00 2001 From: Marius Cramer <m.cramer@pixcept.de> Date: Mon, 14 Oct 2013 08:57:25 -0400 Subject: [PATCH] Added missing empty directories from svn import --- interface/web/monitor/show_log.php | 15 ++++++++------- 1 files changed, 8 insertions(+), 7 deletions(-) diff --git a/interface/web/monitor/show_log.php b/interface/web/monitor/show_log.php index d2f91d8..ec10a98 100644 --- a/interface/web/monitor/show_log.php +++ b/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 */ @@ -103,7 +104,7 @@ /* Creating the array with the refresh intervals - Attention: the core-moule ist triggered every 5 minutes, + Attention: the core-moule ist triggered every 5 minutes, so reload every 2 minutes is impossible! */ $refresh_values = array('0' => '- '.$app->lng("No Refresh").' -','5' => '5 '.$app->lng("minutes"),'10' => '10 '.$app->lng("minutes"),'15' => '15 '.$app->lng("minutes"),'30' => '30 '.$app->lng("minutes"),'60' => '60 '.$app->lng("minutes")); @@ -124,17 +125,17 @@ if(isset($record['data'])) { $data = unserialize($record['data']); - $logData = nl2br($data); + $logData = nl2br(htmlspecialchars($data)); $app->tpl->setVar("log_data", $logData); } else { $app->tpl->setVar("log_data", $app->lng("no_logdata_txt")); } -$app->tpl->setVar("title", $title); +$app->tpl->setVar("list_head_txt", $title); $app->tpl->setVar("log_id",$logId); -$app->tpl->setVar("description", $description); -$app->tpl->setVar("time", getDataTime($logId)); +$app->tpl->setVar("list_desc_txt", $description); +$app->tpl->setVar("time", $app->tools_monitor->getDataTime($logId)); $app->tpl->setVar("monTransDate", $monTransDate); $app->tpl->setVar("monTransRefreshsq", $monTransRefreshsq); -- Gitblit v1.9.1