diff options
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 16e567b77..749d3bf1d 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1839,7 +1839,7 @@ function system_clean_url_settings() { $available = TRUE; } else { - $request = drupal_http_request($base_url . '/admin/settings/clean-urls/check'); + $request = drupal_http_request($base_url . '/admin/config/search/clean-urls/check'); if (isset($request->code) && $request->code == 200) { $available = TRUE; } @@ -1859,7 +1859,7 @@ function system_clean_url_settings() { else { drupal_add_js(drupal_get_path('module', 'system') . '/system.js'); - $form['#redirect'] = $base_url . '/admin/settings/clean-urls'; + $form['#redirect'] = $base_url . '/admin/config/search/clean-urls'; $form['clean_url_description'] = array( '#type' => 'markup', '#markup' => '<p>' . t('Use URLs like <code>example.com/user</code> instead of <code>example.com/?q=user</code>.') . ' ' . t('If you are directed to a <em>Page not found (404)</em> error after testing for clean URLs, see the <a href="@handbook">online handbook</a>.', array('@handbook' => 'http://drupal.org/node/15365')) . '</p>', |