diff options
author | Torsten Grote <grote@kolabsys.com> | 2012-10-25 14:57:22 (GMT) |
---|---|---|
committer | Torsten Grote <grote@kolabsys.com> | 2012-10-25 14:57:22 (GMT) |
commit | 1922c24f353aeda0766fc09bb22b4bdc453ce928 (patch) | |
tree | 6f8890e9e1197905810cd7088f7de70ce4e373f2 /kolab.org | |
parent | f25641c8446c127a9b45d2475f3baba0b991a3b0 (diff) | |
download | kolab.org-www-1922c24f353aeda0766fc09bb22b4bdc453ce928.tar.gz |
added missing db prefix
Diffstat (limited to 'kolab.org')
-rw-r--r-- | kolab.org/www/drupal-7.16/sites/default/db_prefix.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/kolab.org/www/drupal-7.16/sites/default/db_prefix.php b/kolab.org/www/drupal-7.16/sites/default/db_prefix.php new file mode 100644 index 0000000..6e9c1e0 --- /dev/null +++ b/kolab.org/www/drupal-7.16/sites/default/db_prefix.php @@ -0,0 +1,29 @@ +<?php + + $databases['default']['default']['prefix'] = array( + 'authmap' => 'shared_', + 'captcha_points' => 'shared_', + 'default' => 'www_', + 'filters' => 'shared_', + 'filter_formats' => 'shared_', + 'ldapauth' => 'shared_', + 'og' => 'shared_', + 'og_access_roles' => 'shared_', + 'og_ancestry' => 'shared_', + 'og_notifications' => 'shared_', + 'og_uid' => 'shared_', + 'og_users_roles' => 'shared_', + 'profile_fields' => 'shared_', + 'profile_values' => 'shared_', + 'role' => 'shared_', + 'sessions' => 'shared_', + 'twitter' => 'shared_', + 'twitter_account' => 'shared_', + 'twitter_user' => 'shared_', + 'users' => 'shared_', + 'users_roles' => 'shared_', + 'vocabulary' => 'shared_', + 'wysiwyg' => 'shared_' + ); + +?> |