The implementation of menu_hook has a minor mistake in it. The first element of the array, this:

    $items[] = array('path' => 'mailman_manager',
                     'title' => ('Mailing Lists'),
                     'callback' => 'mailman_manager_page',
                     'access' => user_access('access mailman_manager'),
                     'type' => MENU_NORMAL_ITEM);

has the mistake at the title part of the element. It isn't use the t() function to do well the localization, if user define the 'Mailing Lists' string in the localization module.

It's probably a typo, but it coused me some interesting minutes:)

If i insert the t before the ('Mailing Lists') it works fine.

Comments

arturoramos’s picture

Assigned: Unassigned » arturoramos
Status: Active » Closed (fixed)

This bug has been fixed. Thanks.