summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-08 03:27:56 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-08 03:27:56 +0000
commit3a0d4322ae61b3ef7e8514bfc2a6355c8e170019 (patch)
treea1c40112af38141f1c98f65c7d07cc17c01187c8 /profiles
parent34ec8f9834579098308308c85be484fe5b771995 (diff)
downloadbrdo-3a0d4322ae61b3ef7e8514bfc2a6355c8e170019.tar.gz
brdo-3a0d4322ae61b3ef7e8514bfc2a6355c8e170019.tar.bz2
#206138 by pwolanin: Rename mis-named 'module' attribute in node types.
Diffstat (limited to 'profiles')
-rw-r--r--profiles/default/default.profile22
1 files changed, 9 insertions, 13 deletions
diff --git a/profiles/default/default.profile b/profiles/default/default.profile
index acd0164bc..db8f9a376 100644
--- a/profiles/default/default.profile
+++ b/profiles/default/default.profile
@@ -98,29 +98,25 @@ function default_profile_tasks(&$task, $url) {
array(
'type' => 'page',
'name' => st('Page'),
- 'module' => 'node',
+ 'base' => 'node_content',
'description' => st("A <em>page</em>, similar in form to an <em>article</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page."),
- 'custom' => TRUE,
- 'modified' => TRUE,
- 'locked' => FALSE,
- 'help' => '',
- 'min_word_count' => '',
+ 'custom' => 1,
+ 'modified' => 1,
+ 'locked' => 0,
),
array(
'type' => 'article',
'name' => st('Article'),
- 'module' => 'node',
+ 'base' => 'node_content',
'description' => st("An <em>article</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with an <em>article</em> entry. By default, an <em>article</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments."),
- 'custom' => TRUE,
- 'modified' => TRUE,
- 'locked' => FALSE,
- 'help' => '',
- 'min_word_count' => '',
+ 'custom' => 1,
+ 'modified' => 1,
+ 'locked' => 0,
),
);
foreach ($types as $type) {
- $type = (object) _node_type_set_defaults($type);
+ $type = node_type_set_defaults($type);
node_type_save($type);
}