From 8b3592b08c18f7027a7a1105962102ca353007bf Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 16 May 2019 08:42:07 -0400 Subject: [PATCH] Revert renaming variable in Console\GlobalCommunityBlock --- src/Console/GlobalCommunityBlock.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Console/GlobalCommunityBlock.php b/src/Console/GlobalCommunityBlock.php index 2eef427dba..12ea63e5d7 100644 --- a/src/Console/GlobalCommunityBlock.php +++ b/src/Console/GlobalCommunityBlock.php @@ -61,13 +61,13 @@ HELP; throw new \RuntimeException('Database isn\'t ready or populated yet'); } - $contact_url = Contact::getIdForURL($this->getArgument(0)); - if (!$contact_url) { + $contact_id = Contact::getIdForURL($this->getArgument(0)); + if (!$contact_id) { throw new \RuntimeException(L10n::t('Could not find any contact entry for this URL (%s)', $this->getArgument(0))); } $block_reason = $this->getArgument(1); - if(Contact::block($contact_url, $block_reason)) { + if(Contact::block($contact_id, $block_reason)) { $this->out(L10n::t('The contact has been blocked from the node')); } else { throw new \RuntimeException('The contact block failed.');