summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-01-13 22:25:13 +0000
committerDries Buytaert <dries@buytaert.net>2009-01-13 22:25:13 +0000
commitb86354c55c28f88b9bbd426d8faf405246148ee4 (patch)
treeb9c2f224dfd4be3b3108be016333b5c446467092 /profiles
parentb986cc556d3eb30afd95d996cbfbe92a7537411f (diff)
downloadbrdo-b86354c55c28f88b9bbd426d8faf405246148ee4.tar.gz
brdo-b86354c55c28f88b9bbd426d8faf405246148ee4.tar.bz2
- Patch #225562 by Jody Lynn: change DB table names from eg. term_data to taxonomy_term_data.
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();