From: Tobias Diekershoff Date: Fri, 5 Aug 2022 13:37:38 +0000 (+0200) Subject: typo in console tool X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=91911c4676dc0506c179837ceef23171684f34a5;p=friendica.git typo in console tool @gunchleoc spottet a typo while working on the translations of Friendica. This fixes it. --- diff --git a/src/Console/MergeContacts.php b/src/Console/MergeContacts.php index 0d05c579fa..405622cc4b 100644 --- a/src/Console/MergeContacts.php +++ b/src/Console/MergeContacts.php @@ -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']);