We now display the interment notes, if you're logged in

git-svn-id: https://rosehill.googlecode.com/svn/branches/php@25 100bd78a-fc82-11de-b5bc-ffd2847a4b57
This commit is contained in:
inghamn 2010-01-06 15:33:47 +00:00
parent 5ed3041011
commit 4f5971b522
1 changed files with 6 additions and 0 deletions

View File

@ -47,3 +47,9 @@ $section_lot = View::escape(implode(', ',$section_lot));
<td><?php echo $section_lot; ?></td>
</tr>
</table>
<?php
if (userIsAllowed('Interments')) {
$notes = View::escape($this->interment->getNotes());
echo "<p>$notes</p>";
}
?>