Skip to content
Snippets Groups Projects
Commit e943f6c0 authored by Björn Schießle's avatar Björn Schießle
Browse files

log messages are looking nicer if they are not escaped. (xss prevention happens on another place)

parent b6c862b3
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ OC.Log={
row.append(appTd);
var messageTd=$('<td/>');
messageTd.text(entry.message);
messageTd.html(entry.message);
row.append(messageTd);
var timeTd=$('<td/>');
......
......@@ -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);?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment