]> git.mxchange.org Git - friendica.git/blobdiff - mod/repair_ostatus.php
Unused use removed
[friendica.git] / mod / repair_ostatus.php
index 9504a3fcf481648fd58348b16e002abfcafecef8..b0ee0bf575ba3bb9ebd2f5b712f607d344fca7e4 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
  *
@@ -27,15 +27,15 @@ use Friendica\Model\Contact;
 
 function repair_ostatus_content(App $a) {
 
-       if (!local_user()) {
-               notice(DI::l10n()->t('Permission denied.'));
+       if (!DI::userSession()->getLocalUserId()) {
+               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 = DI::userSession()->getLocalUserId();
 
        $counter = intval($_REQUEST['counter'] ?? 0);
 
@@ -43,7 +43,7 @@ function repair_ostatus_content(App $a) {
        $total = DBA::count('contact', $condition);
 
        if (!$total) {
-               return ($o . DI::l10n()->t('Error'));
+               return ($o . DI::l10n()->tt('Error', 'Errors', 1));
        }
 
        $contact = Contact::selectToArray(['url'], $condition, ['order' => ['url'], 'limit' => [$counter++, 1]]);