diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-02-11 17:44:47 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-02-11 17:44:47 +0000 |
commit | 7562a8efb36306e96bf4d13b1f97b4573809ab45 (patch) | |
tree | 998dfd1d27d9c1a691a83a0c0e37d783d4fc4a44 /modules/node/node.install | |
parent | 52195a6b1dd478875a93935df27d7bcacb14f289 (diff) | |
download | brdo-7562a8efb36306e96bf4d13b1f97b4573809ab45.tar.gz brdo-7562a8efb36306e96bf4d13b1f97b4573809ab45.tar.bz2 |
#707724 by chx: Rename confusing arguments in field/entity APIs.
Diffstat (limited to 'modules/node/node.install')
-rw-r--r-- | modules/node/node.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.install b/modules/node/node.install index f099fffb1..b4eeaeab6 100644 --- a/modules/node/node.install +++ b/modules/node/node.install @@ -427,7 +427,7 @@ function node_update_7004() { $type_list = node_type_get_types(); // Apply original settings to all types. - foreach ($type_list as $type => $object) { + foreach ($type_list as $type => $entity) { variable_set('teaser_length_' . $type, $original_length); variable_set('node_preview_' . $type, $original_preview); } |