summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/helpers/application_helper.rb2
-rw-r--r--app/models/member.rb2
-rw-r--r--app/models/user.rb6
-rw-r--r--app/views/account/show.rhtml2
-rw-r--r--app/views/attachments/_links.rhtml2
-rw-r--r--app/views/documents/show.rhtml2
-rw-r--r--app/views/mailer/_issue.rhtml2
-rw-r--r--app/views/news/show.rhtml2
-rw-r--r--app/views/projects/_members.rhtml2
-rw-r--r--app/views/projects/list_members.rhtml2
10 files changed, 10 insertions, 14 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 0c2b6edc3..3b6b19e35 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -55,7 +55,7 @@ module ApplicationHelper
# Display a link to user's account page
def link_to_user(user)
- link_to user.display_name, :controller => 'account', :action => 'show', :id => user
+ link_to user.name, :controller => 'account', :action => 'show', :id => user
end
def link_to_issue(issue)
diff --git a/app/models/member.rb b/app/models/member.rb
index 7b512de37..2aa26d42f 100644
--- a/app/models/member.rb
+++ b/app/models/member.rb
@@ -24,7 +24,7 @@ class Member < ActiveRecord::Base
validates_uniqueness_of :user_id, :scope => :project_id
def name
- self.user.display_name
+ self.user.name
end
def before_destroy
diff --git a/app/models/user.rb b/app/models/user.rb
index 569233d53..a017b4289 100644
--- a/app/models/user.rb
+++ b/app/models/user.rb
@@ -101,12 +101,8 @@ class User < ActiveRecord::Base
end
# Return user's full name for display
- def display_name
- firstname + " " + lastname
- end
-
def name
- display_name
+ "#{firstname} #{lastname}"
end
def active?
diff --git a/app/views/account/show.rhtml b/app/views/account/show.rhtml
index 80614895d..4f1bf45e2 100644
--- a/app/views/account/show.rhtml
+++ b/app/views/account/show.rhtml
@@ -1,4 +1,4 @@
-<h2><%= @user.display_name %></h2>
+<h2><%=h @user.name %></h2>
<p>
<%= mail_to @user.mail unless @user.pref.hide_mail %>
diff --git a/app/views/attachments/_links.rhtml b/app/views/attachments/_links.rhtml
index 93d6b2a7d..afae91a7b 100644
--- a/app/views/attachments/_links.rhtml
+++ b/app/views/attachments/_links.rhtml
@@ -3,7 +3,7 @@
<p><%= link_to attachment.filename, {:controller => 'attachments', :action => 'download', :id => attachment }, :class => 'icon icon-attachment' %>
(<%= number_to_human_size attachment.filesize %>)
<% unless options[:no_author] %>
- <em><%= attachment.author.display_name %>, <%= format_date(attachment.created_on) %></em>
+ <em><%= attachment.author.name %>, <%= format_date(attachment.created_on) %></em>
<% end %>
<% if options[:delete_url] %>
<%= link_to image_tag('delete.png'), options[:delete_url].update({:attachment_id => attachment}), :confirm => l(:text_are_you_sure), :method => :post %>
diff --git a/app/views/documents/show.rhtml b/app/views/documents/show.rhtml
index 4bf09f3dd..2dc76ead6 100644
--- a/app/views/documents/show.rhtml
+++ b/app/views/documents/show.rhtml
@@ -19,7 +19,7 @@
</div>
<%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %>
(<%= number_to_human_size attachment.filesize %>)<br />
- <em><%= attachment.author.display_name %>, <%= format_date(attachment.created_on) %></em><br />
+ <em><%= attachment.author.name %>, <%= format_date(attachment.created_on) %></em><br />
<%= lwr(:label_download, attachment.downloads) %>
</li>
<% end %>
diff --git a/app/views/mailer/_issue.rhtml b/app/views/mailer/_issue.rhtml
index bf17132e6..7caf855fe 100644
--- a/app/views/mailer/_issue.rhtml
+++ b/app/views/mailer/_issue.rhtml
@@ -1,5 +1,5 @@
<%=l(:label_issue)%> #<%= issue.id %> - <%= issue.subject %>
-<%=l(:field_author)%>: <%= issue.author.display_name %>
+<%=l(:field_author)%>: <%= issue.author.name %>
<%=l(:field_assigned_to)%>: <%= issue.assigned_to ? issue.assigned_to.name : "-" %>
<%=l(:field_status)%>: <%= issue.status.name %>
diff --git a/app/views/news/show.rhtml b/app/views/news/show.rhtml
index 30e746aef..df3c02799 100644
--- a/app/views/news/show.rhtml
+++ b/app/views/news/show.rhtml
@@ -6,7 +6,7 @@
<h2><%=h @news.title %></h2>
<p><em><% unless @news.summary.empty? %><%=h @news.summary %><br /><% end %>
-<%= @news.author.display_name %>, <%= format_time(@news.created_on) %></em></p>
+<%= @news.author.name %>, <%= format_time(@news.created_on) %></em></p>
<br />
<%= textilizable(@news.description) %>
<br />
diff --git a/app/views/projects/_members.rhtml b/app/views/projects/_members.rhtml
index 01430d19b..1924e430a 100644
--- a/app/views/projects/_members.rhtml
+++ b/app/views/projects/_members.rhtml
@@ -12,7 +12,7 @@
<% @project.members.find(:all, :include => [:role, :user]).sort{|x,y| x.role.position <=> y.role.position}.each do |member| %>
<% next if member.new_record? %>
<tr class="<%= cycle 'odd', 'even' %>">
- <td><%= member.user.display_name %></td>
+ <td><%= member.name %></td>
<td align="center">
<% if authorize_for('members', 'edit') %>
<% remote_form_for(:member, member, :url => {:controller => 'members', :action => 'edit', :id => member}, :method => :post) do |f| %>
diff --git a/app/views/projects/list_members.rhtml b/app/views/projects/list_members.rhtml
index c4d3ec466..fcfb4f7c0 100644
--- a/app/views/projects/list_members.rhtml
+++ b/app/views/projects/list_members.rhtml
@@ -7,7 +7,7 @@
<h3><%= role.name %></h3>
<ul>
<% members[role].each do |m| %>
-<li><%= link_to m.user.display_name, :controller => 'account', :action => 'show', :id => m.user %> (<%= format_date m.created_on %>)</li>
+<li><%= link_to m.name, :controller => 'account', :action => 'show', :id => m.user %> (<%= format_date m.created_on %>)</li>
<% end %>
</ul>
<% end %>