Changeset 31289
- Timestamp:
- 10/29/10 15:54:30 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfDoctrineGuardPlugin/trunk/modules/sfGuardAuth/lib/BasesfGuardAuthActions.class.php
r23800 r31289 31 31 if ($request->isMethod('post')) 32 32 { 33 $this->form->bind($request->getParameter( 'signin'));33 $this->form->bind($request->getParameter($this->form->getName())); 34 34 if ($this->form->isValid()) 35 35 { … … 82 82 $this->getResponse()->setStatusCode(403); 83 83 } 84 85 public function executePassword($request)86 {87 throw new sfException('This method is not yet implemented.');88 }89 84 }