diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.module | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 429d45534..9e0d24524 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -989,6 +989,15 @@ function system_menu() { 'file' => 'system.admin.inc', 'weight' => -10, ); + $items['admin/config/user-interface'] = array( + 'title' => 'User interface', + 'description' => 'Tools that enhance the user interface.', + 'position' => 'right', + 'page callback' => 'drupal_get_form', + 'access arguments' => array('access administration pages'), + 'file' => 'system.admin.inc', + 'weight' => -5, + ); // Reports. $items['admin/reports'] = array( |