Hi all, it's possible choose the redirection page after the login in the:
$this->add_hook('authenticate', array($this, 'authenticate'));
function authenticate($args) { if(!empty($_GET['_autologin'])) { $args['user'] = $_REQUEST['_user']; $args['pass'] = $_REQUEST['_pass']; } return $args; }
I need this for redirect to the compose message after login if the initial _action was compose.
Thanks