From 19b5e01da02aa2115ee802cf2e43a7f3e58f4eac Mon Sep 17 00:00:00 2001
From: Till Brehm <tbrehm@ispconfig.org>
Date: Wed, 13 Aug 2014 13:28:03 -0400
Subject: [PATCH] Added function "is_superadmin" in auth library and improved other functions.
---
interface/lib/classes/tools_monitor.inc.php | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/interface/lib/classes/tools_monitor.inc.php b/interface/lib/classes/tools_monitor.inc.php
index abf8923..52888e8 100644
--- a/interface/lib/classes/tools_monitor.inc.php
+++ b/interface/lib/classes/tools_monitor.inc.php
@@ -377,7 +377,9 @@
}
else {
$data = unserialize($record['data']);
- $html .= nl2br($data['output']);
+ // improve view @Author <info@typoworx.de>
+ //-- $html .= nl2br($data['output']);
+ $html .= '<xmp>' . $data['output'] . '</xmp>';
}
$html .= '</div></div>';
--
Gitblit v1.9.1