]> git.mxchange.org Git - friendica.git/blobdiff - mod/repair_ostatus.php
Replace old database queries with the new ones
[friendica.git] / mod / repair_ostatus.php
index 370d772e1c1824f4efa9ecf6eabd5496c8409ad7..b8f6fc52324dd67d7996fa5ec6c79963c361b9d6 100644 (file)
@@ -15,7 +15,7 @@ function repair_ostatus_content(App $a) {
                // NOTREACHED
        }
 
-       $o = "<h2>".t("Resubscribing to OStatus contacts")."</h2>";
+       $o = "<h2>".L10n::t("Resubscribing to OStatus contacts")."</h2>";
 
        $uid = local_user();
 
@@ -31,7 +31,7 @@ function repair_ostatus_content(App $a) {
                 intval(CONTACT_IS_SHARING));
 
        if (!$r)
-               return($o.t("Error"));
+               return($o.L10n::t("Error"));
 
        $total = $r[0]["total"];
 
@@ -45,15 +45,15 @@ function repair_ostatus_content(App $a) {
                 intval(CONTACT_IS_SHARING), $counter++);
 
        if (!$r) {
-               $o .= t("Done");
+               $o .= L10n::t("Done");
                return $o;
        }
 
        $o .= "<p>".$counter."/".$total.": ".$r[0]["url"]."</p>";
 
-       $o .= "<p>".t("Keep this window open until done.")."</p>";
+       $o .= "<p>".L10n::t("Keep this window open until done.")."</p>";
 
-       $result = Contact::createFromProbe($uid,$r[0]["url"],true);
+       $result = Contact::createFromProbe($uid, $r[0]["url"], true);
 
        $a->page['htmlhead'] = '<meta http-equiv="refresh" content="1; URL='.System::baseUrl().'/repair_ostatus?counter='.$counter.'">';