(GMT -6): USA Central, Belize, Canada Central, Costa Rica, Mexico, Nicaragua
Recent Comments
Posted 04/12/2006 01:32pm
My apologies, the Bakery likes to strip out backslashes.
The correct path is: \app\controllers\components\oth_auth.php
A tweak is needed to get this to work on 1.1.11.4064.
In \app\controllers\components\oth_auth.php, lines 750-751 need to be modified.
The correct path is:
\app\controllers\components\oth_auth.php
In \app\controllers\components\oth_auth.php, lines 750-751 need to be modified.
Original:
$this->Session->write('othAuth.frompage',$this->controller->params['url']['url']);
$page .= "?".$this->auth_url_redirect_var."=".$this->controller->params['url']['url'];
Revised:
if(isset($this->controller->params['url']['url'])) {
$this->Session->write('othAuth.frompage',$this->controller->params['url']['url']);
$page .= "?".$this->auth_url_redirect_var."=".$this->controller->params['url']['url'];
}