diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-01 00:27:29 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-01 00:27:29 +0000 |
commit | 4c976d51e6cc375055ab298b49e9ae2928e618dc (patch) | |
tree | 506e37dcafb7758aeeacfdb92de5ea8fe3025e42 /modules | |
parent | 99d5d3d67eaa9c3fb06a82efa8132326c882f40e (diff) | |
download | brdo-4c976d51e6cc375055ab298b49e9ae2928e618dc.tar.gz brdo-4c976d51e6cc375055ab298b49e9ae2928e618dc.tar.bz2 |
#281446 by xqus, dropcube, and catch: Improve the requirements check for the installer. Awesome.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/simpletest/drupal_web_test_case.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php index 1971d92f5..7b6eca355 100644 --- a/modules/simpletest/drupal_web_test_case.php +++ b/modules/simpletest/drupal_web_test_case.php @@ -691,7 +691,7 @@ class DrupalWebTestCase { // Add the specified modules to the list of modules in the default profile. $args = func_get_args(); - $modules = array_unique(array_merge(drupal_verify_profile('default', 'en'), $args)); + $modules = array_unique(array_merge(drupal_get_profile_modules('default', 'en'), $args)); drupal_install_modules($modules); // Because the schema is static cached, we need to flush |