Hi,
i've installed sfDoctrineGuardExtraPlugin.
I don't know what i touched exactly but now when i ask for sfGuardRegister/register this is showed:
The route "sf_guard_register" does not exist.
To debug my problem I have installed sfDGEP in another project, and i found out that if i remove the line below in plugins/sfDoctrineGuardExtraPlugin/lib/sfGuardExtraRouting.class.php I get the same error.
class sfGuardExtraRouting
{
static public function listenToRoutingLoadConfigurationEvent(sfEvent $event)
{
$r->prependRoute('sf_guard_register', new sfRoute('/register', array('module' => 'sfGuardRegister', 'action' => 'register')));
}
}
But... in my first project i have that line, so what is happening exactly?
Javi