X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Frepair_ostatus.php;h=3acaa687a712942a959edbfaee62e5141a79cb91;hb=6c8ed888f534bafbbf10af48791b69463360c7f0;hp=370d772e1c1824f4efa9ecf6eabd5496c8409ad7;hpb=d49f986d1eb6894dd948577288357b6c1755e3d3;p=friendica.git diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php index 370d772e1c..3acaa687a7 100644 --- a/mod/repair_ostatus.php +++ b/mod/repair_ostatus.php @@ -2,9 +2,12 @@ /** * @file mod/repair_ostatus.php */ + use Friendica\App; use Friendica\Core\L10n; +use Friendica\Core\Protocol; use Friendica\Core\System; +use Friendica\Database\DBA; use Friendica\Model\Contact; function repair_ostatus_content(App $a) { @@ -15,7 +18,7 @@ function repair_ostatus_content(App $a) { // NOTREACHED } - $o = "

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

"; + $o = "

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

"; $uid = local_user(); @@ -23,37 +26,38 @@ 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 = Contact::createFromProbe($uid,$r[0]["url"],true); + $result = Contact::createFromProbe($uid, $r[0]["url"], true); $a->page['htmlhead'] = '';