PluginsfGuardUserTable? in sfGuardDoctrinePlugin/trunk
is (column is_Active does not exist):
<?php
/**
* This class has been auto-generated by the Doctrine ORM Framework
*/
class PluginsfGuardUserTable extends Doctrine_Table
{
public static function retrieveByUsername($username, $isActive = true)
{
return Doctrine_Query::create()
->from('sfGuardUser u')
->where('u.username = ?', $username)
->addWhere('u.is_Active = ?', $isActive)
->fetchOne();
}
}
should be:
<?php
/**
* This class has been auto-generated by the Doctrine ORM Framework
*/
class PluginsfGuardUserTable extends Doctrine_Table
{
public static function retrieveByUsername($username, $isActive = true)
{
return Doctrine_Query::create()
->from('sfGuardUser u')
->where('u.username = ?', $username)
->addWhere('u.is_active = ?', $isActive)
->fetchOne();
}
}