X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Frepair_ostatus.php;h=b4c6a9cbd636ea1fe29ebeec157669ae6494876a;hb=9435cc4b88de611407bf992f571e12e8f54b3c51;hp=5a6afd9fb4d4853af4391b073789157f553a28fe;hpb=e447375cddb847edbc9d4486be3938674ae66b8c;p=friendica.git diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php index 5a6afd9fb4..b4c6a9cbd6 100644 --- a/mod/repair_ostatus.php +++ b/mod/repair_ostatus.php @@ -4,26 +4,23 @@ */ use Friendica\App; -use Friendica\Core\L10n; use Friendica\Core\Protocol; -use Friendica\Core\System; use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Model\Contact; function repair_ostatus_content(App $a) { if (! local_user()) { - notice(L10n::t('Permission denied.') . EOL); - $a->internalRedirect('ostatus_repair'); + notice(DI::l10n()->t('Permission denied.') . EOL); + DI::baseUrl()->redirect('ostatus_repair'); // NOTREACHED } - $o = "

".L10n::t("Resubscribing to OStatus contacts")."

"; + $o = "

".DI::l10n()->t("Resubscribing to OStatus contacts")."

"; $uid = local_user(); - $a = \get_app(); - $counter = intval($_REQUEST['counter']); $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE @@ -34,7 +31,7 @@ function repair_ostatus_content(App $a) { intval(Contact::SHARING)); if (!DBA::isResult($r)) { - return ($o . L10n::t("Error")); + return ($o . DI::l10n()->t("Error")); } $total = $r[0]["total"]; @@ -49,17 +46,17 @@ function repair_ostatus_content(App $a) { intval(Contact::SHARING), $counter++); if (!DBA::isResult($r)) { - $o .= L10n::t("Done"); + $o .= DI::l10n()->t("Done"); return $o; } $o .= "

".$counter."/".$total.": ".$r[0]["url"]."

"; - $o .= "

".L10n::t("Keep this window open until done.")."

"; + $o .= "

".DI::l10n()->t("Keep this window open until done.")."

"; - $result = Contact::createFromProbe($uid, $r[0]["url"], true); + Contact::createFromProbe($uid, $r[0]["url"], true); - $a->page['htmlhead'] = ''; + DI::page()['htmlhead'] = ''; return $o; }