Re: privacy issues
Ok…figured it out for dsader’s plugin. Just needs priority added to it. Check out this post in WPMU forums, but basically add priority to the template_redirects like:
add_action('template_redirect', 'ds_users_authenticator', 1);
add_action('template_redirect', 'ds_members_authenticator', 1);
add_action('template_redirect', 'ds_admins_authenticator', 1);
Just adding the “1” for priority makes it go before Andy’s changes. All those lines are near the top of the plugin.
Trent