diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/chameleon/chameleon.theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme index 74a332b98..eb5d7b33b 100644 --- a/themes/chameleon/chameleon.theme +++ b/themes/chameleon/chameleon.theme @@ -134,7 +134,7 @@ function chameleon_node($node, $teaser = 0) { $output .= " </div>\n"; $submitted = ''; - if (theme_get_setting("toggle_node_info_$node->type")) { + if (variable_get('node_submitted_' . $node->type, TRUE)) { $submitted = t("By !author at @date", array('!author' => theme('username', $node), '@date' => format_date($node->created, 'small'))); } |