function phptemplate_node_submitted

6.x template.php phptemplate_node_submitted($node)

Returns the themed submitted-by string for the node.

File

drupal-6.x/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),
  ));
}