Changeset 10944
- Timestamp:
- 08/19/08 09:26:55 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfDoctrineGuardPlugin/branches/symfony-1.0/lib/model/doctrine/PluginsfGuardUser.class.php
r9516 r10944 45 45 if ($callable = sfConfig::get('app_sf_guard_plugin_check_password_callable')) 46 46 { 47 return call_user_func_array($callable, array($this->get('username'), $password ), $this);47 return call_user_func_array($callable, array($this->get('username'), $password, $this)); 48 48 } 49 49 else plugins/sfDoctrineGuardPlugin/trunk/lib/model/doctrine/PluginsfGuardUser.class.php
r9342 r10944 48 48 if ($callable = sfConfig::get('app_sf_guard_plugin_check_password_callable')) 49 49 { 50 return call_user_func_array($callable, array($this->getUsername(), $password ), $this);50 return call_user_func_array($callable, array($this->getUsername(), $password, $this)); 51 51 } 52 52 else