The Submitted By modules uses the following code, which works fine in core themes:

function submitted_by_theme_registry_alter(&$theme_registry) {
  if (!empty($theme_registry['form_element'])) {
    $theme_registry['node_submitted']['function'] = 'submitted_by_node_submitted';
    $theme_registry['comment_submitted']['function'] = 'submitted_by_comment_submitted';
  }
}

This is not working under this theme.

Comments

nancydru’s picture

The functions that should be honored are theme('node_submitted') and theme('comment_submitted').

Jeff Burnz’s picture

6.x-3.1 prints the standard $submitted variable, so it should work, previously the date/author was a customised affair.

nancydru’s picture

Status: Active » Fixed

Indeed it does. Thank you.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.