diff options
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 55d9bf5c4..13c9cfb6f 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -401,6 +401,13 @@ function system_menu() { 'page arguments' => array('system_clean_url_settings'), 'file' => 'system.admin.inc', ); + $items['admin/settings/clean-urls/check'] = array( + 'title' => 'Clean URL check', + 'page callback' => 'drupal_json', + 'page arguments' => array(array('status' => TRUE)), + 'access callback' => TRUE, + 'type' => MENU_CALLBACK, + ); // Reports: $items['admin/reports'] = array( |