diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-06 05:06:00 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-06 05:06:00 +0000 |
commit | 9327932bf23250b7eb8b4953e45f2cfbf6dda641 (patch) | |
tree | dbd1a30eb0823ca117b1484bc13f04a1ed7742f0 /modules/node/node.module | |
parent | 523ba0348ea70e6ed1412488cd37dc521d13abae (diff) | |
download | brdo-9327932bf23250b7eb8b4953e45f2cfbf6dda641.tar.gz brdo-9327932bf23250b7eb8b4953e45f2cfbf6dda641.tar.bz2 |
#382870 by geerlingguy, jmburnz, EclipseGc, JohnAlbin, sun, et al: Update and Polish default node.tpl.php output.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 5534d0b3c..48872f50f 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1225,11 +1225,11 @@ function template_preprocess_node(&$variables) { // Display post information only on certain node types. if (variable_get('node_submitted_' . $node->type, TRUE)) { $variables['submitted'] = theme('node_submitted', $node); - $variables['picture'] = theme_get_setting('toggle_node_user_picture') ? theme('user_picture', $node) : ''; + $variables['user_picture'] = theme_get_setting('toggle_node_user_picture') ? theme('user_picture', $node) : ''; } else { $variables['submitted'] = ''; - $variables['picture'] = ''; + $variables['user_picture'] = ''; } // Gather node classes. |