diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-08-22 14:55:29 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-08-22 14:55:29 +0000 |
commit | 40af7785cf757f0405e2f9a4690ab259bf5576d6 (patch) | |
tree | 107922b2dc2d4f6e3ee350e4a2d2a5c3e1077030 /modules/system/system.install | |
parent | 9442cbbf77a75585d4efe0c9a6fe8f3c1d121fe4 (diff) | |
download | brdo-40af7785cf757f0405e2f9a4690ab259bf5576d6.tar.gz brdo-40af7785cf757f0405e2f9a4690ab259bf5576d6.tar.bz2 |
- Patch #877690 by catch, das-peter, mfer, Damien Tournoud: cannot upgrade Drupal core if the comment module is enabled.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 8774a7d74..67ef33777 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -416,15 +416,6 @@ function system_requirements($phase) { ); continue; } - // Check for a disabled dependency. - if (!$required_file->status) { - $requirements["$module-$required_module"] = array( - 'title' => $t('Unresolved dependency'), - 'description' => $t('@name requires this module.', array('@name' => $name)), - 'value' => $t('@required_name (Disabled)', array('@required_name' => $required_name)), - 'severity' => REQUIREMENT_ERROR, - ); - } } } } |