summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-02-11 08:48:36 +0000
committerDries Buytaert <dries@buytaert.net>2007-02-11 08:48:36 +0000
commit373a071fc4fcac1a4789c4d29568a04af8354ef3 (patch)
tree25ef85971ba0292a3ae82bb398f9bbc17e4d0ea0 /includes
parent5ed8046fe7e17d6085d322e3063f259adeda116c (diff)
downloadbrdo-373a071fc4fcac1a4789c4d29568a04af8354ef3.tar.gz
brdo-373a071fc4fcac1a4789c4d29568a04af8354ef3.tar.bz2
- Patch #76522 by RobRoy: avoid name clash between modules and install profiles. Removing redundant hook.
Diffstat (limited to 'includes')
-rw-r--r--includes/install.inc6
1 files changed, 0 insertions, 6 deletions
diff --git a/includes/install.inc b/includes/install.inc
index 589731264..961e8efa4 100644
--- a/includes/install.inc
+++ b/includes/install.inc
@@ -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();
- }
}