-
- seldon

-
Total Posts: 92
Joined: 2007-11-08
|
The back-to-login button in the forgot-password step, points again to the forgot-password-page.
|
| |
-
- Posted: November 15 2007
-
| top
-
|
 |
 |
 |
|
|
-
- seldon

-
Total Posts: 92
Joined: 2007-11-08
|
Ok, i think the bug causing this, is in Mage_Core_Model_Url, on line 660, it says:
if (!is_null($routePath)) { $this->setRoutePath($routePath); }
Removing the ! fixes the problem. Let me know if this change is correct?
|
| |
-
- Posted: November 16 2007
-
| top
| # 1
-
|
 |
 |
 |
|
|
-
- Moshe

-
Total Posts: 1771
Joined: 2007-08-07
Los Angeles
|
@seldon: try this:
public function getRouteUrl($routePath=null, $routeParams=null) { $this->unsetData('route_params');
if (!is_null($routePath)) { $this->setRoutePath($routePath); } if (is_array($routeParams)) { $this->setRouteParams($routeParams, false); }
$url = $this->getBaseUrl().$this->getRoutePath(); return $url; }
|
| |
-
- Posted: November 16 2007
-
| top
| # 2
-
|
 |
 |
 |
|
|
-
- seldon

-
Total Posts: 92
Joined: 2007-11-08
|
Well my change caused the admin to malfunction, so is not right. I dont see however what you changed? It still doesnt work.
|
| |
-
- Posted: November 16 2007
-
| top
| # 3
-
|
 |
 |
 |
|
|
-
- seldon

-
Total Posts: 92
Joined: 2007-11-08
|
Any idea, Moshe ?
|
| |
-
- Posted: November 16 2007
-
| top
| # 4
-
|
 |
 |
 |
|
|
-
- Moshe

-
Total Posts: 1771
Joined: 2007-08-07
Los Angeles
|
There was a minor update to this file, i thought maybe this will help you. For me it works just fine.
Could you paste the URL you get for “Back to Login” link?
|
| |
-
- Posted: November 16 2007
-
| top
| # 5
-
|
 |
 |
 |
|
|