diff --git a/app/assets/javascripts/related_tag.js.erb b/app/assets/javascripts/related_tag.js.erb
index 1d05d4704..352eda78c 100644
--- a/app/assets/javascripts/related_tag.js.erb
+++ b/app/assets/javascripts/related_tag.js.erb
@@ -236,7 +236,7 @@
if (desc.length > 30) {
desc = desc.substring(0, 30) + "...";
}
- var $del = $("").html(desc);
+ var $del = $("").text(desc);
$ul.append($("
").html($del));
} else if (text.match(/^ http/)) {
text = text.substring(1, 1000);
diff --git a/app/views/artists/_form.html.erb b/app/views/artists/_form.html.erb
index 0a70e2acc..d65d04624 100644
--- a/app/views/artists/_form.html.erb
+++ b/app/views/artists/_form.html.erb
@@ -16,7 +16,7 @@
<%= f.input :other_names_comma, :hint => "Separate with commas", :as => :text, :label => "Other names" %>
<%= f.input :group_name %>
- <%= f.input :url_string, :label => "URLs", :as => :text, :input_html => {:size => "50x5", :value => params.dig(:artist, :url_string) || @artist.url_array.join("\n")} %>
+ <%= f.input :url_string, :label => "URLs", :as => :text, :input_html => {:size => "50x5", :value => params.dig(:artist, :url_string) || @artist.urls.join("\n")} %>
<%= dtext_field "artist", "notes" %>
<%= f.button :submit, "Submit" %>