Development

#3501 (Typo in BasesfGuardAuthActions.class.php)

You must first sign up to be able to contribute.

Ticket #3501 (closed defect: fixed)

Opened 4 days ago

Last modified 2 days ago

Typo in BasesfGuardAuthActions.class.php

Reported by: deplifer Assigned to: fabien
Priority: minor Milestone:
Component: sfGuardPlugin Version: 1.1.0 RC1
Keywords: Cc:
Qualification: Unreviewed

Description

There is a typo in BasesfGuardAuthActions?.class.php at line 38

Reads:

$signinUrl = sfConfig::get('app_sf_guard_plugin_success_signinUrl', $user->getReferer($request->getReferer()));

Should be:

$signinUrl = sfConfig::get('app_sf_guard_plugin_success_signin_url', $user->getReferer($request->getReferer()));

As it says in the documentation regarding the Customize sfGuardAuth redirect handling.

Either that or one should rename the:

success_signin_url

to:

success_signinUrl

Change History

05/10/08 13:40:11 changed by fabien

  • status changed from new to closed.
  • resolution set to fixed.

(In [8892]) sfGuardPlugin: fixed typo (closes #3501)