mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 06:34:46 +02:00
Fix variable name
This commit is contained in:
parent
22e1523a99
commit
2862dd81d1
1 changed files with 3 additions and 3 deletions
|
@ -45,9 +45,9 @@ xml.epp_head do
|
|||
xml.tag!('domain:crDate', @domain.created_at.try(:iso8601))
|
||||
|
||||
if @domain.updated_at > @domain.created_at
|
||||
upID = @domain.updator.try(:registrar)
|
||||
upID = upID.code if upID.present?
|
||||
xml.tag!('domain:upID', upID) if upID.present?
|
||||
updator = @domain.updator.try(:registrar)
|
||||
updator = updator.code if updator.present?
|
||||
xml.tag!('domain:upID', updator) if updator.present?
|
||||
xml.tag!('domain:upDate', @domain.updated_at.try(:iso8601))
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue