Fix for IE Destroyer hook_menu()

/**
 * Implementation of hook_menu()
 */

function iedestroyer_menu($may_cache) {
  if ($may_cache == TRUE) {
    return array(
      'path' => 'admin/settings/iedestroyer',
      'title' => t('IE Destroyer'),
      'description' => t('Configure IE Destroyer.'),
      'callback' => 'drupal_get_form',
      'callback arguments' => array('iedestroyer_admin'),
      'access' => user_access('administer iedestroyer'),
    );    
  }
}

Submit Fix

Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Select the syntax highlighting mode to use.