summaryrefslogtreecommitdiff
path: root/includes/install.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-13 05:26:57 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-13 05:26:57 +0000
commit89d04ea78a1d422b2dc21cd9e6e10344674632a1 (patch)
treee31e54a385b067111c5c5db70c64ca467b488b52 /includes/install.inc
parenta0ec577e5b3a55ddf0e4707c953f9fdbbd23b792 (diff)
downloadbrdo-89d04ea78a1d422b2dc21cd9e6e10344674632a1.tar.gz
brdo-89d04ea78a1d422b2dc21cd9e6e10344674632a1.tar.bz2
#561452 by pwolanin and David_Rothstein: Add API function to get module/theme info without rebuilding it.
Diffstat (limited to 'includes/install.inc')
-rw-r--r--includes/install.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/install.inc b/includes/install.inc
index 2e1f256d8..69e49c951 100644
--- a/includes/install.inc
+++ b/includes/install.inc
@@ -559,7 +559,7 @@ function drupal_verify_profile($install_state) {
* Normally just testing wants to set this to TRUE.
*/
function drupal_install_modules($module_list = array(), $disable_modules_installed_hook = FALSE) {
- $files = system_get_module_data();
+ $files = system_rebuild_module_data();
$module_list = array_flip(array_values($module_list));
do {
$moved = FALSE;
@@ -654,7 +654,7 @@ function drupal_install_system() {
->execute();
// Now that we've installed things properly, bootstrap the full Drupal environment
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
- system_get_module_data();
+ system_rebuild_module_data();
}
/**