Guillermo - Issue #46

This commit is contained in:
Guillermo 2017-07-11 03:39:17 -03:00
parent ea2c750515
commit 0aeb04c642
2 changed files with 2 additions and 1 deletions

View File

@ -76,6 +76,7 @@ class SendRecoverPasswordController extends Controller {
$mailSender->setTemplate(MailTemplate::PASSWORD_FORGOT, [
'to' => $this->user->email,
'name' => $this->user->name,
'url' => Setting::getSetting('url')->getValue(),
'token' => $this->token
]);

View File

@ -39,7 +39,7 @@ class FileUploader extends FileManager {
$newName = $this->linearCongruentialGenerator->generate($this->linearCongruentialGeneratorOffset) . '_' . $newName;
}
$this->fileName = $newName;;
$this->fileName = $newName;
}
public function setGeneratorValues($gap, $first, $offset) {