diff options
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 4f8e7983b..e3c7acaed 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -408,6 +408,12 @@ function system_menu() { 'access callback' => TRUE, 'type' => MENU_CALLBACK, ); + $items['system/ahah'] = array( + 'title' => 'AHAH callback', + 'page callback' => 'form_ahah_callback', + 'access callback' => TRUE, + 'type' => MENU_CALLBACK, + ); $items['system/timezone'] = array( 'title' => 'Time zone', 'page callback' => 'system_timezone', |