diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-02 23:20:28 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-02 23:20:28 +0000 |
commit | 6afea0a06499dc17fa1a4c9f4d4e210c477ba877 (patch) | |
tree | f457a62124c573fceb6cca58d0bf6a01431e161e /modules/node/node.module | |
parent | 1a7c7dd16aa1cfbe3bd6d34e91749b494b780535 (diff) | |
download | brdo-6afea0a06499dc17fa1a4c9f4d4e210c477ba877.tar.gz brdo-6afea0a06499dc17fa1a4c9f4d4e210c477ba877.tar.bz2 |
#564642 by Scott Reynolds, Damien Tournoud, matt2000, and moshe weitzman: Remove previous content property from build functions so artifacts do not persist.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 6a25cfc05..84cc776ff 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1180,6 +1180,9 @@ function node_build($node, $build_mode = 'full') { * */ function node_build_content(stdClass $node, $build_mode = 'full') { + // Remove previously built content, if exists. + $node->content = array(); + // The 'view' hook can be implemented to overwrite the default function // to display nodes. if (node_hook($node, 'view')) { @@ -1187,9 +1190,6 @@ function node_build_content(stdClass $node, $build_mode = 'full') { } // Build fields content. - if (empty($node->content)) { - $node->content = array(); - }; $node->content += field_attach_view('node', $node, $build_mode); // Always display a read more link on teasers because we have no way |