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

Andy Inman’s picture

Status: Active » Fixed

Thanks for that - I missed it during the conversion to D7, obviously. Now implemented, and new release will be out shortly.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.