Use correct route instead

THX @schiesbn
(I should setup a mail server on my local system...)
This commit is contained in:
Lukas Reschke 2014-10-24 11:45:30 +02:00
parent 57b5c82eb7
commit 767b08c669
2 changed files with 2 additions and 2 deletions

View File

@ -189,7 +189,7 @@ class LostController extends Controller {
ISecureRandom::CHAR_UPPER);
$this->config->setUserValue($user, 'owncloud', 'lostpassword', $token);
$link = $this->urlGenerator->linkToRouteAbsolute('core.lost.setPassword', array('userId' => $user, 'token' => $token));
$link = $this->urlGenerator->linkToRouteAbsolute('core.lost.resetform', array('userId' => $user, 'token' => $token));
$tmpl = new \OC_Template('core/lostpassword', 'email');
$tmpl->assign('link', $link, false);

View File

@ -129,7 +129,7 @@ class LostControllerTest extends \PHPUnit_Framework_TestCase {
$this->container['URLGenerator']
->expects($this->once())
->method('linkToRouteAbsolute')
->with('core.lost.setPassword', array('userId' => 'ExistingUser', 'token' => 'ThisIsMaybeANotSoSecretToken!'))
->with('core.lost.resetform', array('userId' => 'ExistingUser', 'token' => 'ThisIsMaybeANotSoSecretToken!'))
->will($this->returnValue('https://ownCloud.com/index.php/lostpassword/'));
$response = $this->lostController->email('ExistingUser');