- Patch #76522 by RobRoy: avoid name clash between modules and install profiles. Removing redundant hook.

6.x
Dries Buytaert 2007-02-11 08:48:36 +00:00
parent 5ed8046fe7
commit 373a071fc4
1 changed files with 0 additions and 6 deletions

View File

@ -319,12 +319,6 @@ function drupal_install_profile($profile, $module_list) {
// Install schemas for profile and all its modules.
module_rebuild_cache();
drupal_install_modules($module_list);
// And now, run the profile's install function.
$function = $profile .'_install';
if (function_exists($function)) {
$function();
}
}