From 2cb1563f63386b35a69e460051aa9b4a2851d104 Mon Sep 17 00:00:00 2001 From: ftimme <ft@falkotimme.com> Date: Wed, 30 May 2012 07:30:44 -0400 Subject: [PATCH] - Added (clickable) placeholders to client messaging function. - Added check so that the client password isn't inserted into the message (for security reasons). --- interface/web/monitor/show_log.php | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/interface/web/monitor/show_log.php b/interface/web/monitor/show_log.php index d2f91d8..10abacd 100644 --- a/interface/web/monitor/show_log.php +++ b/interface/web/monitor/show_log.php @@ -103,7 +103,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,16 +124,16 @@ 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("list_desc_txt", $description); $app->tpl->setVar("time", getDataTime($logId)); $app->tpl->setVar("monTransDate", $monTransDate); $app->tpl->setVar("monTransRefreshsq", $monTransRefreshsq); -- Gitblit v1.9.1