<?php if ( intval($this->item->modified) != 0 && $this->item->params->get('show_modify_date')) : ?>
<tr>
<td colspan="2" class="modifydate">
<?php
$db =& JFactory::getDBO();
$sql = "SELECT name FROM jos_users where id =" .$this->item->modified_by;
$db->setQuery( $sql );
$total = $db->loadResult();
?>
<?php echo JText::sprintf('LAST_UPDATED2', JHTML::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
<?php echo JText::sprintf('von')?> <?php echo $total ?>
</td>
</tr>
<?php endif; ?>
Lesezeichen