]> git.mxchange.org Git - friendica.git/blobdiff - mod/lostpass.php
updated JA translation THX Ozero Dien
[friendica.git] / mod / lostpass.php
index 34daeffd7d30809c15dd11d4b152e0df8de42255..2ce396e36606610e585c7bdd40bb103040d6a372 100644 (file)
@@ -1,7 +1,22 @@
 <?php
-
 /**
- * @file mod/lostpass.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
 
 use Friendica\App;
@@ -65,9 +80,9 @@ function lostpass_post(App $a)
                Login Name:     %3$s', $resetlink, DI::baseUrl(), $user['nickname']));
 
        $email = DI::emailer()
-               ->newSystemMail((!empty($user['language'])) ? DI::l10n()->withLang($user['language']) : DI::l10n())
+               ->newSystemMail()
                ->withMessage(DI::l10n()->t('Password reset requested at %s', $sitename), $preamble, $body)
-               ->forUser($user['uid'] ?? 0)
+               ->forUser($user)
                ->withRecipient($user['email'])
                ->build();
 
@@ -157,9 +172,9 @@ function lostpass_generate_password($user)
                ', DI::baseUrl(), $user['nickname'], $new_password));
 
                $email = DI::emailer()
-                       ->newSystemMail((!empty($user['language'])) ? DI::l10n()->withLang($user['language']) : DI::l10n())
+                       ->newSystemMail()
                        ->withMessage(DI::l10n()->t('Your password has been changed at %s', $sitename), $preamble, $body)
-                       ->forUser($user['uid'] ?? 0)
+                       ->forUser($user)
                        ->withRecipient($user['email'])
                        ->build();
                DI::emailer()->send($email);