Authored by hf

fixes bug to partner login

... ... @@ -317,7 +317,6 @@ class AbstractAction extends Controller_Abstract
}
}
}
var_dump($useSession, '+++', $this->_uid);
return $this->_uid;
}
... ...
... ... @@ -37,4 +37,11 @@ class ErrorController extends AbstractAction
));
}
public function testAction()
{
$uid = $this->getUid(true);
$session = $this->getSession('_TOKEN');
var_dump($uid, '+++', $session, APPLICATION_ENV);
}
}
... ...