Fix for IE Destroyer hook_menu()

  1. /**
  2.  * Implementation of hook_menu()
  3.  */
  4. function iedestroyer_menu($may_cache) {
  5.   if ($may_cache == TRUE) {
  6.     return array(
  7.       'path' => 'admin/settings/iedestroyer',
  8.       'title' => t('IE Destroyer'),
  9.       'description' => t('Configure IE Destroyer.'),
  10.       'callback' => 'drupal_get_form',
  11.       'callback arguments' => array('iedestroyer_admin'),
  12.       'access' => user_access('administer iedestroyer'),
  13.     );    
  14.   }
  15. }

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.