Changeset 24790 for plugins/sfDoctrineGuardExtraPlugin
- Timestamp:
- 12/02/09 13:24:10 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfDoctrineGuardExtraPlugin/branches/1.3/modules/sfGuardForgotPassword/lib/BasesfGuardForgotPasswordActions.class.php
r24682 r24790 49 49 $values = $this->form->getValues(); 50 50 51 $sfGuardUser = Doctrine ::getTable('sfGuardUser')51 $sfGuardUser = Doctrine_Core::getTable('sfGuardUser') 52 52 ->createQuery('u') 53 53 ->where('u.username = ?') … … 115 115 $params = array($request->getParameter('key'), $request->getParameter('id')); 116 116 117 $this->sfGuardUser = Doctrine ::getTable('sfGuardUser')117 $this->sfGuardUser = Doctrine_Core::getTable('sfGuardUser') 118 118 ->createQuery('u') 119 119 ->where('u.password = ?') plugins/sfDoctrineGuardExtraPlugin/branches/1.3/modules/sfGuardRegister/lib/BasesfGuardRegisterActions.class.php
r24682 r24790 112 112 $params = array($request->getParameter('key'), $request->getParameter('id')); 113 113 114 $sfGuardUser = Doctrine ::getTable('sfGuardUser')->createQuery('u')114 $sfGuardUser = Doctrine_Core::getTable('sfGuardUser')->createQuery('u') 115 115 ->where('u.password = ? AND u.id = ?', $params) 116 116 ->limit(1) … … 130 130 * Send the registration confirm email 131 131 * 132 * @param object $user user object132 * @param object $user user object 133 133 * 134 134 * @return void