]> git.mxchange.org Git - friendica.git/commitdiff
typo in console tool
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 5 Aug 2022 13:37:38 +0000 (15:37 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 5 Aug 2022 13:37:38 +0000 (15:37 +0200)
@gunchleoc spottet a typo while working on the translations of Friendica. This fixes it.

src/Console/MergeContacts.php

index 0d05c579fabaaa737b3419c97102c7ba3ed107dd..405622cc4b4feb4a827c114c5c8bde34ee737b3c 100644 (file)
@@ -87,7 +87,7 @@ HELP;
        {
                $first = $this->dba->selectFirst('contact', ['id', 'nurl', 'url'], ["`uri-id` = ? AND `nurl` != ? AND `url` != ?", $uriid, '', ''], ['order' => ['id']]);
                if (empty($first)) {
-                       $this->err($this->l10n->t('No valid first countact found for uri-id %d.', $uriid));
+                       $this->err($this->l10n->t('No valid first contact found for uri-id %d.', $uriid));
                        return;
                }
                $this->out($first['url']);