* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ require_once(sfConfig::get('sf_plugins_dir').'/sfDoctrineGuardPlugin/modules/sfGuardAuth/lib/BasesfGuardAuthActions.class.php'); /** * * @package symfony * @subpackage plugin * @author Fabien Potencier * @version SVN: $Id: actions.class.php 23319 2009-10-25 12:22:23Z Kris.Wallsmith $ */ class sfGuardAuthActions extends BasesfGuardAuthActions { public function executeSignin($request) { if($this->getUser()->isAuthenticated()) { $this->getUser()->signOut(); } parent::executeSignin($request); } }