diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-01-15 13:32:41 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-01-15 13:32:41 +0000 |
commit | 53e365c06f910796ea36a2c54fc55fcb3d07c904 (patch) | |
tree | 6f8423943d7f49298c36a76b3475b54f9a8cc55b /modules/system/system.admin.inc | |
parent | dce07ab353cb71a317296d2566fad3c814bdc6c3 (diff) | |
download | brdo-53e365c06f910796ea36a2c54fc55fcb3d07c904.tar.gz brdo-53e365c06f910796ea36a2c54fc55fcb3d07c904.tar.bz2 |
- Patch #368006 by deviantintegral, lisarex: module incompatibility message was confusing.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index fe6af7436..592ad8b3d 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1014,7 +1014,7 @@ function _system_modules_build_row($info, $extra) { if (!isset($info['core']) || $info['core'] != DRUPAL_CORE_COMPATIBILITY || empty($info['files'])) { $compatible = FALSE; $status_short .= t('Incompatible with this version of Drupal core. '); - $status_long .= t('This version is incompatible with the !core_version version of Drupal core. ', array('!core_version' => VERSION)); + $status_long .= t('This version is not compatible with Drupal !core_version and should be replaced.', array('!core_version' => DRUPAL_CORE_COMPATIBILITY)); } // Ensure this module is compatible with the currently installed version of PHP. @@ -2633,7 +2633,7 @@ function theme_system_themes_page($variables) { // Make sure to provide feedback on compatibility. if (!empty($theme->incompatible_core)) { - $output .= '<div class="incompatible">' . t('This version is incompatible with the !core_version version of Drupal core.', array('!core_version' => VERSION)) . '</div>'; + $output .= '<div class="incompatible">' . t('This version is not compatible with Drupal !core_version and should be replaced.', array('!core_version' => DRUPAL_CORE_COMPATIBILITY)) . '</div>'; } elseif (!empty($theme->incompatible_php)) { if (substr_count($theme->info['php'], '.') < 2) { |