Index: modules/system/system.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v retrieving revision 1.216 diff -u -9 -p -r1.216 system.admin.inc --- modules/system/system.admin.inc 19 Oct 2009 23:28:40 -0000 1.216 +++ modules/system/system.admin.inc 27 Oct 2009 18:23:26 -0000 @@ -756,19 +756,25 @@ function system_modules($form, $form_sta '#collapsible' => TRUE, '#theme' => 'system_modules_fieldset', '#header' => array( array('data' => t('Enabled'), 'class' => array('checkbox')), t('Name'), t('Version'), t('Description'), ), ); + foreach (element_children($form['modules'][$package]) as $module) { + $items[] = l($module, '', array('fragment' => 'edit-modules-' . strtolower($package) . '-' . strtr($module, '_', '-') . '-enable', 'external' => TRUE)); + } } + $form['links'] = array( + '#markup' => theme('item_list', array('items' => $items, 'Packages')), + ); $form['submit'] = array( '#type' => 'submit', '#value' => t('Save configuration'), ); $form['#action'] = url('admin/config/modules/list/confirm'); return $form; }