summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-01-13 22:41:39 +0000
committerDries Buytaert <dries@buytaert.net>2009-01-13 22:41:39 +0000
commit77936aef4c487e8b3265cb28e72d104004cb1172 (patch)
treed2dbc969ff08f968f248ccedb39dc846950e3480 /profiles
parentbe36b9205e25595f5e4bf0dba4de33f5f620b33e (diff)
downloadbrdo-77936aef4c487e8b3265cb28e72d104004cb1172.tar.gz
brdo-77936aef4c487e8b3265cb28e72d104004cb1172.tar.bz2
- Rollback of #225562 -- I think there is still something wrong.
Diffstat (limited to 'profiles')
-rw-r--r--profiles/default/default.profile4
1 files changed, 2 insertions, 2 deletions
diff --git a/profiles/default/default.profile b/profiles/default/default.profile
index 1c0b2a590..a3ddc7f2b 100644
--- a/profiles/default/default.profile
+++ b/profiles/default/default.profile
@@ -131,7 +131,7 @@ function default_profile_tasks(&$task, $url) {
$description = st('Use tags to group articles on similar topics into categories.');
$help = st('Enter a comma-separated list of words.');
- $vid = db_insert('taxonomy_vocabulary')->fields(array(
+ $vid = db_insert('vocabulary')->fields(array(
'name' => 'Tags',
'description' => $description,
'help' => $help,
@@ -143,7 +143,7 @@ function default_profile_tasks(&$task, $url) {
'module' => 'taxonomy',
'weight' => 0,
))->execute();
- db_insert('taxonomy_vocabulary_node_type')->fields(array('vid' => $vid, 'type' => 'article'))->execute();
+ db_insert('vocabulary_node_type')->fields(array('vid' => $vid, 'type' => 'article'))->execute();
// Update the menu router information.
menu_rebuild();