From 0e4546093685f82bd5533d4c99da23311566fa84 Mon Sep 17 00:00:00 2001 From: Priit Tark Date: Mon, 4 May 2015 16:02:30 +0300 Subject: [PATCH] Removed unneeded variable --- app/models/epp/contact.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/epp/contact.rb b/app/models/epp/contact.rb index ecb7219f2..988b93d5c 100644 --- a/app/models/epp/contact.rb +++ b/app/models/epp/contact.rb @@ -55,7 +55,7 @@ class Epp::Contact < Contact # add prefix when needed if custom_code.present? - cid, rcode, custom = custom_code.split(':') + cid, rcode = custom_code.split(':') if "#{cid}:#{rcode}" != registrar.contact_prefix custom_code = "#{registrar.contact_prefix}:#{custom_code}" end