Active
Project:
Webmail Plus
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
8 Feb 2009 at 22:15 UTC
Updated:
8 Feb 2009 at 22:37 UTC
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
Comment #1
robertdouglass commented