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
Comment #1
nancydruThe functions that should be honored are theme('node_submitted') and theme('comment_submitted').
Comment #2
Jeff Burnz commented6.x-3.1 prints the standard $submitted variable, so it should work, previously the date/author was a customised affair.
Comment #3
nancydruIndeed it does. Thank you.