Merge pull request #4462 from xfalcox/hide-names-about

FIX: Hide full names on /about for crawlers when names are disabled
This commit is contained in:
Jeff Atwood 2016-09-26 23:21:08 +02:00 committed by GitHub
commit d69cf820d8
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
</span>
<span itemprop='name'>
<%= user.username %>
<% if user.name.present? %>
<% if user.name.present? && SiteSetting.enable_names %>
- <%= user.name %>
<% end %>
</span>
@ -44,7 +44,7 @@
</span>
<span itemprop='name'>
<%= user.username %>
<% if user.name.present? %>
<% if user.name.present? && SiteSetting.enable_names %>
- <%= user.name %>
<% end %>
</span>