diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-05 03:42:58 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-05 03:42:58 +0000 |
commit | f3ed3283db182dfbbf35f5db077ebce2bc368bfe (patch) | |
tree | f2581841cbca28f3aebce26ee331ac3c72dd20de /includes | |
parent | 8bac2dd319a42cade43b06218cbef31bf8f4867d (diff) | |
download | brdo-f3ed3283db182dfbbf35f5db077ebce2bc368bfe.tar.gz brdo-f3ed3283db182dfbbf35f5db077ebce2bc368bfe.tar.bz2 |
#361683 follow-up by sun: Remove more windows line endings.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/theme.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 606beebf1..1b5d03afd 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -2006,10 +2006,10 @@ function template_preprocess_node(&$variables) { } // Clean up name so there are no underscores. $variables['template_files'][] = 'node-' . str_replace('_', '-', $node->type); - $variables['template_files'][] = 'node-' . $node->nid;
-
- // Add $FIELD_NAME_rendered variables for fields.
- drupal_function_exists('field_attach_preprocess');
+ $variables['template_files'][] = 'node-' . $node->nid; + + // Add $FIELD_NAME_rendered variables for fields. + drupal_function_exists('field_attach_preprocess'); $variables += field_attach_preprocess('node', $node); } |