diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-16 11:51:41 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-16 11:51:41 +0000 |
commit | 74f54a44e6a381a50b8672fbb565cfa501364aea (patch) | |
tree | 6ff399f91bbb8d69abe028183f914a8a61c33537 | |
parent | f654c84c8f57cdcd930a5268773f85d2aa1f16cd (diff) | |
download | redmine-74f54a44e6a381a50b8672fbb565cfa501364aea.tar.gz redmine-74f54a44e6a381a50b8672fbb565cfa501364aea.zip |
Add space between avatar and headline (#26424).
Patch by Felix Gliesche.
git-svn-id: http://svn.redmine.org/redmine/trunk@16820 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/news/show.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/news/show.html.erb b/app/views/news/show.html.erb index 09e14f61f..72c94a9c7 100644 --- a/app/views/news/show.html.erb +++ b/app/views/news/show.html.erb @@ -8,7 +8,7 @@ <%= delete_link news_path(@news) if User.current.allowed_to?(:manage_news, @project) %> </div> -<h2><%= avatar(@news.author, :size => "24") %><%=h @news.title %></h2> +<h2><%= avatar(@news.author, :size => "24") %> <%=h @news.title %></h2> <% if authorize_for('news', 'edit') %> <div id="edit-news" style="display:none;"> |