diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2012-06-22 16:53:45 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2012-06-22 16:53:45 +0200 |
commit | e943f6c0c8826315a613105b0313ce977298ebac (patch) | |
tree | 14662c7fa1829c0a73f9ea8fbd40733cfab28de9 /settings/templates | |
parent | b6c862b32f3e97df37e2bf06aed715334031daba (diff) | |
download | nextcloud-server-e943f6c0c8826315a613105b0313ce977298ebac.tar.gz nextcloud-server-e943f6c0c8826315a613105b0313ce977298ebac.zip |
log messages are looking nicer if they are not escaped. (xss prevention happens on another place)
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 9f839cf7491..f8c515369e6 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -42,7 +42,7 @@ if(!$_['htaccessworking']) { <?php echo $entry->app;?> </td> <td> - <?php echo htmlentities($entry->message);?> + <?php echo $entry->message;?> </td> <td> <?php echo OC_Util::formatDate($entry->time);?> |