asked on
public function before()
{
parent::before();
//if ( ! Auth::member(100) and Request::active()->action != 'login')
if( !Auth::check() && Request::active()->action != 'login' && Request::active()->action != 'register' )
{
Response::redirect('new_system'); //CHANGED THIS, IT WAS publishers/login
}
elseif ( Auth::check() && Request::active()->action == 'register' && Request::active()->action == 'login')
{
Response::redirect('publishers/index');
}
}
public function action_login($id)
{
if($id != '') {
$auth = Auth::instance();
if (Auth::check() or $auth->login_id($id))
{
// credentials ok, go right in
Session::set_flash('notice', 'Welcome, '.$current_user->username);
Response::redirect('publishers/sites/create');
}
}