Skip to content

Commit

Permalink
Merge pull request #1001 from sul-dlss/marc-error
Browse files Browse the repository at this point in the history
Don't call #join on a string.
  • Loading branch information
jchristo4 committed Jan 28, 2015
2 parents 41c3d3e + 6466d11 commit e3dde0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/helpers/marc_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def contributors_and_works_from_marc(marc)
end
end
vern_text << link_to(h(link_text.strip),:q => "\"#{link_text}\"", :action => 'index', :search_field => 'author_search')
vern_text << relator_text.join(", ") unless relator_text.blank?
vern_text << relator_text unless relator_text.blank?
vern_text << "</dd>"
end
end
Expand Down

0 comments on commit e3dde0f

Please sign in to comment.