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 @@ ...@@ -40,7 +40,7 @@
<tr> <tr>
<? foreach ($row as $key => $value): ?> <? foreach ($row as $key => $value): ?>
<td> <td>
<?= htmlReady($value) ?> <?= \Studip\Markup::isHtml($value) ? formatReady($value) : htmlReady($value) ?>
</td> </td>
<? endforeach; ?> <? endforeach; ?>
</tr> </tr>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<? if ($tabledata['table_name'] === 'log_events' && $key === 'readable_entry') : ?> <? if ($tabledata['table_name'] === 'log_events' && $key === 'readable_entry') : ?>
<?= $value ?> <?= $value ?>
<? else: ?> <? else: ?>
<?= htmlReady($value) ?> <?= \Studip\Markup::isHtml($value) ? formatReady($value) : htmlReady($value) ?>
<? endif; ?> <? endif; ?>
</td> </td>
</tr> </tr>
......
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