diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2011-07-18 00:56:06 -0700 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2011-07-18 00:56:06 -0700 |
commit | e30853303f6ef852e6d8f46ce07c9e8af14de63b (patch) | |
tree | 7a7c7c1351c86fffdedb34ce772d8d9867ea2c6f /modules/node | |
parent | dafc861fa3b0bf474524f04b9d9d1b7bfe67d27f (diff) | |
download | brdo-e30853303f6ef852e6d8f46ce07c9e8af14de63b.tar.gz brdo-e30853303f6ef852e6d8f46ce07c9e8af14de63b.tar.bz2 |
Issue #348448 follow-up by jbrown: Coding standard fixes to E_STRICT tests.
Diffstat (limited to 'modules/node')
-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 a08e99757..d4fce3f01 100644 --- a/modules/node/node.install +++ b/modules/node/node.install @@ -476,7 +476,7 @@ function _update_7000_node_get_types() { $extra_types = array_diff($all_types, array_keys($node_types)); foreach ($extra_types as $type) { - $type_object = new stdClass; + $type_object = new stdClass(); $type_object->type = $type; // In Drupal 6, whether you have a body field or not is a flag in the node |