function webmail_plus_solr_menu() {  
	$items = array();
	
	$items['webmail_plus/solr_search'] = array(
     'title' => t('Webmail Plus Email Search'),
     'description' => 'Searches email using Solr.',
     'access arguments' => array('access webmail_plus'),
     'page callback' => 'drupal_get_form',
     'page arguments' => array('webmail_plus_solr_search'),
     'file' => 'webmail_plus_solr.search.inc',
     'type' => MENU_CALLBACK,
   );

title gets translated by the menu system so the t() is superfluous.

Comments

robertdouglass’s picture

Issue tags: +ApacheSolr