X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Frepair_ostatus.php;h=3a3ce42067f0af5ec6db0e4e3bee6a56e06463df;hb=26aee232544f0d83b1863433fddecbc9060afc4d;hp=07721220a087150f14a42bedb3d60235381e4c4e;hpb=ee39aba490fb7e17ba9c01a9a4f4aedc51bee564;p=friendica.git diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php old mode 100755 new mode 100644 index 07721220a0..3a3ce42067 --- a/mod/repair_ostatus.php +++ b/mod/repair_ostatus.php @@ -1,17 +1,24 @@ internalRedirect('ostatus_repair'); // NOTREACHED } - $o = "

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

"; + $o = "

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

"; $uid = local_user(); @@ -19,39 +26,40 @@ function repair_ostatus_content(App &$a) { $counter = intval($_REQUEST['counter']); - $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE - `uid` = %d AND `network` = '%s' AND `rel` IN (%d, %d)", - intval($uid), - dbesc(NETWORK_OSTATUS), - intval(CONTACT_IS_FRIEND), - intval(CONTACT_IS_SHARING)); + $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE + `uid` = %d AND `network` = '%s' AND `rel` IN (%d, %d)", + intval($uid), + DBA::escape(Protocol::OSTATUS), + intval(Contact::FRIEND), + intval(Contact::SHARING)); - if (!$r) - return($o.t("Error")); + if (!DBA::isResult($r)) { + return ($o . L10n::t("Error")); + } $total = $r[0]["total"]; - $r = q("SELECT `url` FROM `contact` WHERE - `uid` = %d AND `network` = '%s' AND `rel` IN (%d, %d) + $r = q("SELECT `url` FROM `contact` WHERE + `uid` = %d AND `network` = '%s' AND `rel` IN (%d, %d) ORDER BY `url` LIMIT %d, 1", - intval($uid), - dbesc(NETWORK_OSTATUS), - intval(CONTACT_IS_FRIEND), - intval(CONTACT_IS_SHARING), $counter++); + intval($uid), + DBA::escape(Protocol::OSTATUS), + intval(Contact::FRIEND), + intval(Contact::SHARING), $counter++); - if (!$r) { - $o .= t("Done"); + if (!DBA::isResult($r)) { + $o .= L10n::t("Done"); return $o; } $o .= "

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

"; - $o .= "

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

"; + $o .= "

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

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