]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Settings/TwoFactor/Recovery.php
Merge pull request #10094 from urbalazs/license-20210328
[friendica.git] / src / Module / Settings / TwoFactor / Recovery.php
index fbfb0b183d11762fe4c486c693713a01b9fff4f1..6ee52bd03643efb93a4b13450f45893029927aff 100644 (file)
@@ -1,12 +1,30 @@
 <?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/>.
+ *
+ */
 
 namespace Friendica\Module\Settings\TwoFactor;
 
-use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
 use Friendica\DI;
-use Friendica\Model\TwoFactor\RecoveryCode;
-use Friendica\Module\BaseSettingsModule;
+use Friendica\Security\TwoFactor\Model\RecoveryCode;
+use Friendica\Module\BaseSettings;
 use Friendica\Module\Security\Login;
 
 /**
@@ -14,7 +32,7 @@ use Friendica\Module\Security\Login;
  *
  * @package Friendica\Module\TwoFactor
  */
-class Recovery extends BaseSettingsModule
+class Recovery extends BaseSettings
 {
        public static function init(array $parameters = [])
        {
@@ -45,7 +63,7 @@ class Recovery extends BaseSettingsModule
 
                        if ($_POST['action'] == 'regenerate') {
                                RecoveryCode::regenerateForUser(local_user());
-                               notice(DI::l10n()->t('New recovery codes successfully generated.'));
+                               info(DI::l10n()->t('New recovery codes successfully generated.'));
                                DI::baseUrl()->redirect('settings/2fa/recovery?t=' . self::getFormSecurityToken('settings_2fa_password'));
                        }
                }