]> git.mxchange.org Git - friendica.git/blobdiff - mod/repair_ostatus.php
Merge pull request #12025 from annando/no-boot-src-module
[friendica.git] / mod / repair_ostatus.php
index 9504a3fcf481648fd58348b16e002abfcafecef8..8ae294a0ac5b3fa4d330c36f3016c5f125dafada 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
 
 use Friendica\App;
 use Friendica\Core\Protocol;
+use Friendica\Core\Session;
 use Friendica\Database\DBA;
 use Friendica\DI;
 use Friendica\Model\Contact;
 
 function repair_ostatus_content(App $a) {
 
-       if (!local_user()) {
-               notice(DI::l10n()->t('Permission denied.'));
+       if (!Session::getLocalUser()) {
+               DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.'));
                DI::baseUrl()->redirect('ostatus_repair');
                // NOTREACHED
        }
 
        $o = '<h2>' . DI::l10n()->t('Resubscribing to OStatus contacts') . '</h2>';
 
-       $uid = local_user();
+       $uid = Session::getLocalUser();
 
        $counter = intval($_REQUEST['counter'] ?? 0);