]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/RandomProfile.php
Merge remote-tracking branch 'upstream/develop' into write-tags
[friendica.git] / src / Module / RandomProfile.php
index c5b31afeef2e176d7e264171a3f3cf1844e868ba..111d92dc40d638ec3fcc1433f8932a4c9392301b 100644 (file)
@@ -1,8 +1,28 @@
 <?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;
 
 use Friendica\BaseModule;
+use Friendica\DI;
 use Friendica\Model\Contact;
 use Friendica\Model\GContact;
 
@@ -13,7 +33,7 @@ class RandomProfile extends BaseModule
 {
        public static function content(array $parameters = [])
        {
-               $a = self::getApp();
+               $a = DI::app();
 
                $contactUrl = GContact::getRandomUrl();
 
@@ -22,6 +42,6 @@ class RandomProfile extends BaseModule
                        $a->redirect($link);
                }
 
-               $a->internalRedirect('profile');
+               DI::baseUrl()->redirect('profile');
        }
 }