diff options
Diffstat (limited to 'profiles/testing/testing.install')
-rw-r--r-- | profiles/testing/testing.install | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/profiles/testing/testing.install b/profiles/testing/testing.install index 74a1fff00..28b262708 100644 --- a/profiles/testing/testing.install +++ b/profiles/testing/testing.install @@ -1,4 +1,5 @@ <?php +// $Id$ /** * Implements hook_install(). @@ -6,7 +7,6 @@ * Perform actions to set up the site for this profile. */ function testing_install() { - // Allow visitor account creation, but with administrative approval. variable_set('user_register', USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL); @@ -14,4 +14,3 @@ function testing_install() { user_role_grant_permissions(DRUPAL_ANONYMOUS_RID, array('access content')); user_role_grant_permissions(DRUPAL_AUTHENTICATED_RID, array('access content')); } - |