X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Frepair_ostatus.php;h=7531ad35c23e811af063df354f239d48ad579b5f;hb=e62c1c3f81495f149f5613dc2c31ca896239949e;hp=ea83b08adf6256db6e3c48569c8b0c4424181056;hpb=5adfeb0bd5fed2f793332056c03bb7c043d5fc69;p=friendica.git diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php old mode 100755 new mode 100644 index ea83b08adf..7531ad35c2 --- a/mod/repair_ostatus.php +++ b/mod/repair_ostatus.php @@ -1,20 +1,23 @@ ".t("Resubscribing to OStatus contacts").""; + $o = "

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

"; $uid = local_user(); @@ -25,12 +28,12 @@ function repair_ostatus_content(App $a) { $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)); + DBA::escape(NETWORK_OSTATUS), + intval(Contact::FRIEND), + intval(Contact::SHARING)); if (!$r) - return($o.t("Error")); + return($o.L10n::t("Error")); $total = $r[0]["total"]; @@ -39,20 +42,20 @@ function repair_ostatus_content(App $a) { ORDER BY `url` LIMIT %d, 1", intval($uid), - dbesc(NETWORK_OSTATUS), - intval(CONTACT_IS_FRIEND), - intval(CONTACT_IS_SHARING), $counter++); + DBA::escape(NETWORK_OSTATUS), + intval(Contact::FRIEND), + intval(Contact::SHARING), $counter++); if (!$r) { - $o .= t("Done"); + $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'] = '';