function phptemplate_node_submitted in Drupal 6
Returns the themed submitted-by string for the node.
File
- themes/
garland/ template.php, line 84
Code
function phptemplate_node_submitted($node) {
return t('!datetime — !username', array(
'!username' => theme('username', $node),
'!datetime' => format_date($node->created),
));
}