X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Frepair_ostatus.php;h=0d30fc298dea1c83be9183906b7a2aa23dc801e9;hb=4a1cf0e00a561cf940956d3efcb592dfc3d1bf13;hp=30ad1476ca900f784e7c638592ff25c567960ccd;hpb=6d7362da4134cce31f28a5efa2c623a11f89afc2;p=friendica.git diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php index 30ad1476ca..0d30fc298d 100644 --- a/mod/repair_ostatus.php +++ b/mod/repair_ostatus.php @@ -1,12 +1,26 @@ . + * */ 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; @@ -14,17 +28,15 @@ use Friendica\Model\Contact; function repair_ostatus_content(App $a) { if (! local_user()) { - notice(L10n::t('Permission denied.') . EOL); + notice(DI::l10n()->t('Permission denied.')); 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 @@ -35,7 +47,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"]; @@ -50,17 +62,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.")."

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