Исправлен баг с ссылками в email с активацией

This commit is contained in:
ErickSkrauch
2017-06-11 21:06:55 +03:00
parent 861c6810cb
commit 013d0eda60
4 changed files with 22 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ class ForgotPasswordParams {
public function __construct(string $username, string $code, string $link) {
$this->username = $username;
$this->code = $code;
$this->link = $code;
$this->link = $link;
}
public function getUsername(): string {

View File

@@ -12,7 +12,7 @@ class RegistrationEmailParams {
public function __construct(string $username, string $code, string $link) {
$this->username = $username;
$this->code = $code;
$this->link = $code;
$this->link = $link;
}
public function getUsername(): string {