- output list of categories

This commit is contained in:
steinm 2011-03-10 14:50:40 +00:00
parent 7d9ccc3951
commit 1c296ea582

View File

@ -106,6 +106,18 @@ print "<a class=\"infos\" href=\"mailto:".$owner->getEmail()."\">".$owner->getFu
<td><?php printMLText("keywords");?>:</td>
<td><?php print $document->getKeywords();?></td>
</tr>
<tr>
<td><?php printMLText("categories");?>:</td>
<td>
<?php
$cats = $document->getCategories();
$ct = array();
foreach($cats as $cat)
$ct[] = $cat->getName();
echo implode(', ', $ct);
?>
</td>
</tr>
</table>
<?php
UI::contentContainerEnd();