diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-05-10 09:13:09 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-05-10 09:13:09 +0200 |
commit | a9d7c67bf2e906fceea40b41f4780e623226fdff (patch) | |
tree | a2cb6af3360647057ca5e8352cea86c35239f564 /settings/templates | |
parent | 94803dc22207926439414d597d830db8aacc0db6 (diff) | |
download | nextcloud-server-a9d7c67bf2e906fceea40b41f4780e623226fdff.tar.gz nextcloud-server-a9d7c67bf2e906fceea40b41f4780e623226fdff.zip |
The log message is not always shown in html
The log message can also be logged with syslog, here we don't want to have html-entities. Also the log messages through json are displayed as text not html.
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 38c6042c82a..d167f2780ef 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -29,7 +29,7 @@ $levels=array('Debug','Info','Warning','Error','Fatal'); <?php echo $entry->app;?> </td> <td> - <?php echo $entry->message;?> + <?php echo htmlentities($entry->message);?> </td> <td> <?php echo OC_Util::formatDate($entry->time);?> |