diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 342b06bf4761781bfe8bd7ce277f4d7aaf94ff2e..284acc8ce94bb9e4aee53e4ba456d6d1cf652363 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -17,7 +17,7 @@ <div class="alert alert-info" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Fechar"> <span aria-hidden="true">×</span></button> - <%= notice %> + <%= notice.html_safe %> </div> <% end %> @@ -25,7 +25,7 @@ <div class="alert alert-danger alert-dismissible" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Fechar"> <span aria-hidden="true">×</span></button> - <%= alert %> + <%= alert.html_safe %> </div> <% end %>