]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Debug/WebFinger.php
Merge pull request #8919 from annando/notice-info
[friendica.git] / src / Module / Debug / WebFinger.php
index 90da40bf09d12d5e15a289b5eea203965e570b3b..ca26fd866e17546440789db74cbde638e007d190 100644 (file)
@@ -1,10 +1,29 @@
 <?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\Debug;
 
 use Friendica\BaseModule;
-use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
+use Friendica\DI;
 use Friendica\Network\Probe;
 
 /**
@@ -15,8 +34,8 @@ class WebFinger extends BaseModule
        public static function content(array $parameters = [])
        {
                if (!local_user()) {
-                       $e           = new \Friendica\Network\HTTPException\ForbiddenException(L10n::t('Only logged in users are permitted to perform a probing.'));
-                       $e->httpdesc = L10n::t('Public access denied.');
+                       $e           = new \Friendica\Network\HTTPException\ForbiddenException(DI::l10n()->t('Only logged in users are permitted to perform a probing.'));
+                       $e->httpdesc = DI::l10n()->t('Public access denied.');
                        throw $e;
                }