Closed (fixed)
Project:
Multi-Language Link and Redirect (MultiLink)
Version:
7.x-2.7
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
25 Nov 2011 at 11:37 UTC
Updated:
23 Dec 2011 at 14:20 UTC
To get the Bypass permission to work you have to change
(d6 version, multilink_redirect.module)
function multilink_redirect_perm() {
return array('bypass multilink redirect');
}to
(d7 version, multilink_redirect.module)
function multilink_redirect_permission() {
return array(
'bypass multilink redirect' => array(
'title' => t('Bypass multilink redirect'),
'description' => t('Override the redirection and shows a message instead'),
));
}
Clear cache after that and you should see the option in the permission list.
Cheers!
Comments
Comment #1
andy inman commentedThanks for that - I missed it during the conversion to D7, obviously. Now implemented, and new release will be out shortly.