summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-01-14 21:16:21 +0000
committerDries Buytaert <dries@buytaert.net>2009-01-14 21:16:21 +0000
commitd3df2ff356b0b5802e406de32bbe8727af3128b5 (patch)
treedb6df37d436e550f8523c21beda5c2b0f6bd251c /profiles
parent534287b1bc054a4141855ce472d3c400af7d6784 (diff)
downloadbrdo-d3df2ff356b0b5802e406de32bbe8727af3128b5.tar.gz
brdo-d3df2ff356b0b5802e406de32bbe8727af3128b5.tar.bz2
- Patch #225562 by Jody Lynn et al: clean up of the taxonomy module SQL table namespace.
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 a3ddc7f2b..1c0b2a590 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('vocabulary')->fields(array(
+ $vid = db_insert('taxonomy_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('vocabulary_node_type')->fields(array('vid' => $vid, 'type' => 'article'))->execute();
+ db_insert('taxonomy_vocabulary_node_type')->fields(array('vid' => $vid, 'type' => 'article'))->execute();
// Update the menu router information.
menu_rebuild();