Resolve runtime macros in notes too

refs #8235
This commit is contained in:
Matthias Jentsch 2015-05-26 16:49:08 +02:00
parent 4ac7557c2f
commit a7135bad62
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ $links = $object->getNotesUrls();
<td>
<?php
if (! empty($notes)) {
$notes = $this->resolveMacros($notes, $object);
echo $notes . '<br>';
}
// add warning to links that open in new tabs to improve accessibility, as recommended by WCAG20 G201
@ -25,4 +26,4 @@ $links = $object->getNotesUrls();
?>
</td>
</tr>
<?php endif ?>
<?php endif ?>