diff --git a/core/modules/system/system.install b/core/modules/system/system.install index c7e73ae..1b3e8f3 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -54,7 +54,7 @@ function system_requirements($phase) { // Test Clean URL support if ($phase == 'install' && $install_state['interactive'] && !isset($_GET['rewrite']) && strpos($software,'Apache') !== FALSE) { $requirements['rewrite_module']['title'] = t('Clean URLs'); - $requirements['rewrite_module']['value'] = t('Your system configuration does not currently appear to support this feature. The handbook page on Clean URLs has additional troubleshooting information. If still experiencing problems with some form submissions then ensure that URLs start with index.php/ ', array('@link' => 'http://drupal.org/node/15365')); + $requirements['rewrite_module']['value'] = t('Your system configuration does not currently appear to support this feature. The handbook page on Clean URLs has additional troubleshooting information. If you choose to not enable clean URLs then ensure that URLs start with index.php/ ', array('@link' => 'http://drupal.org/node/15365')); $requirements['rewrite_module']['severity'] = REQUIREMENT_WARNING; }