Skip to content
Snippets Groups Projects
Commit 73b3cdcc authored by David Siegfried's avatar David Siegfried
Browse files

use formatReady in privacy-details, if needed, fixes #4882

Closes #4882

Merge request !3656
parent 1905df1c
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@
<tr>
<? foreach ($row as $key => $value): ?>
<td>
<?= htmlReady($value) ?>
<?= \Studip\Markup::isHtml($value) ? formatReady($value) : htmlReady($value) ?>
</td>
<? endforeach; ?>
</tr>
......
......@@ -18,7 +18,7 @@
<? if ($tabledata['table_name'] === 'log_events' && $key === 'readable_entry') : ?>
<?= $value ?>
<? else: ?>
<?= htmlReady($value) ?>
<?= \Studip\Markup::isHtml($value) ? formatReady($value) : htmlReady($value) ?>
<? endif; ?>
</td>
</tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment