From 53e365c06f910796ea36a2c54fc55fcb3d07c904 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 15 Jan 2010 13:32:41 +0000 Subject: - Patch #368006 by deviantintegral, lisarex: module incompatibility message was confusing. --- modules/system/system.admin.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/system/system.admin.inc') 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 .= '
' . t('This version is incompatible with the !core_version version of Drupal core.', array('!core_version' => VERSION)) . '
'; + $output .= '
' . t('This version is not compatible with Drupal !core_version and should be replaced.', array('!core_version' => DRUPAL_CORE_COMPATIBILITY)) . '
'; } elseif (!empty($theme->incompatible_php)) { if (substr_count($theme->info['php'], '.') < 2) { -- cgit v1.2.3