Development

Changeset 31289

You must first sign up to be able to contribute.

Changeset 31289

Show
Ignore:
Timestamp:
10/29/10 15:54:30 (3 years ago)
Author:
gimler
Message:

sfDoctrineGuardPlugin[1.3]: fix hardcoded form name; remove old function

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfDoctrineGuardPlugin/trunk/modules/sfGuardAuth/lib/BasesfGuardAuthActions.class.php

    r23800 r31289  
    3131    if ($request->isMethod('post')) 
    3232    { 
    33       $this->form->bind($request->getParameter('signin')); 
     33      $this->form->bind($request->getParameter($this->form->getName())); 
    3434      if ($this->form->isValid()) 
    3535      { 
     
    8282    $this->getResponse()->setStatusCode(403); 
    8383  } 
    84  
    85   public function executePassword($request) 
    86   { 
    87     throw new sfException('This method is not yet implemented.'); 
    88   } 
    8984}