Posted by netmee on June 19, 2011 at 5:06pm
1 follower
| Project: | Invite |
| Version: | 6.x-2.x-dev |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Just add t() into invite.module at line 147 like :
Before:
// Frontend menu items
$items['invite'] = array(
'title' => 'Invite a friend',
'title callback' => 'invite_page_title',
'page callback' => 'drupal_get_form',
'page arguments' => array('invite_form', 'page', array()),
'access arguments' => array('send invitations'),
'type' => MENU_NORMAL_ITEM,
);After:
// Frontend menu items
$items['invite'] = array(
'title' => t('Invite a friend'),
'title callback' => 'invite_page_title',
'page callback' => 'drupal_get_form',
'page arguments' => array('invite_form', 'page', array()),
'access arguments' => array('send invitations'),
'type' => MENU_NORMAL_ITEM,
);