From d12910fcd680320e4098092d933b9612f2ad25b6 Mon Sep 17 00:00:00 2001 From: jomo Date: Wed, 18 Jun 2014 01:18:20 +0200 Subject: [PATCH] fix donor usernames --- app/views/users/_username.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/users/_username.html.erb b/app/views/users/_username.html.erb index 4fff9b7..dac58c8 100644 --- a/app/views/users/_username.html.erb +++ b/app/views/users/_username.html.erb @@ -1,4 +1,4 @@
<%= link_to user.name, user_path(user.id), class: "role #{user.role.name} #{"banned" if user.banned?} #{"disabled" if user.disabled?}", title: user.ign %> - <% link_to_if "$", donate_statics_path, class: "donor", title: "Donator" if user.donor? %> + <% link_to "$", donate_statics_path, class: "donor", title: "Donator" if user.donor? %>
\ No newline at end of file