mirror of
https://github.com/friendica/friendica
synced 2024-11-18 12:23:41 +00:00
typo in console tool
@gunchleoc spottet a typo while working on the translations of Friendica. This fixes it.
This commit is contained in:
parent
bd246b8cc2
commit
91911c4676
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ HELP;
|
||||||
{
|
{
|
||||||
$first = $this->dba->selectFirst('contact', ['id', 'nurl', 'url'], ["`uri-id` = ? AND `nurl` != ? AND `url` != ?", $uriid, '', ''], ['order' => ['id']]);
|
$first = $this->dba->selectFirst('contact', ['id', 'nurl', 'url'], ["`uri-id` = ? AND `nurl` != ? AND `url` != ?", $uriid, '', ''], ['order' => ['id']]);
|
||||||
if (empty($first)) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
$this->out($first['url']);
|
$this->out($first['url']);
|
||||||
|
|
Loading…
Reference in a new issue