for beta 1.2.0, i changed these code below, Redirect if user already logged in from home page to dasboard
mod_easysocial_login.php
to
But it doesnt work with 1.2.1, i am not sure why?
mod_easysocial_login.php
$my = Foundry::user();
// If user is already logged in, there's no point to show the login form.
if( !$params->get( 'show_logout_button' , true ) && $my->id )
{
return;
}to
$my = Foundry::user();
// If user is already logged in, there's no point to show the login form.
if( $my->id > 0 )
{
return $this->redirect( FRoute::dashboard( array() , false ) );
}But it doesnt work with 1.2.1, i am not sure why?