diff --git a/app/views/diary_entries/index.html.erb b/app/views/diary_entries/index.html.erb
index 63a805b3c..1f7a35ae3 100644
--- a/app/views/diary_entries/index.html.erb
+++ b/app/views/diary_entries/index.html.erb
@@ -13,13 +13,13 @@
<% if @user %>
<% if @user == current_user %>
-
<%= link_to image_tag("new.png", :class => "small_icon", :border=>0) + t('.new'), diary_new_path, {:title => t('.new_title')} %>
+ <%= link_to image_tag("new.png", :class => "small_icon", :border => 0) + t('.new'), diary_new_path, { :title => t('.new_title') } %>
<% end %>
<% else %>
<% if current_user %>
-
<%= link_to image_tag("new.png", :class => "small_icon", :border=>0) + t('.new'), diary_new_path, {:title => t('.new_title')} %>
+ <%= link_to image_tag("new.png", :class => "small_icon", :border => 0) + t('.new'), diary_new_path, { :title => t('.new_title') } %>
<% end %>
<% end %>
@@ -42,7 +42,7 @@
<% if @entries.size < @page_size -%>
<%= t('.older_entries') %>
<% else -%>
- <%= link_to t('.older_entries'), @params.merge(:page => @page + 1 ) %>
+ <%= link_to t('.older_entries'), @params.merge(:page => @page + 1) %>
<% end -%>
|
diff --git a/app/views/diary_entries/show.html.erb b/app/views/diary_entries/show.html.erb
index 02bebc5bc..91a4c61f5 100644
--- a/app/views/diary_entries/show.html.erb
+++ b/app/views/diary_entries/show.html.erb
@@ -13,7 +13,6 @@
<%= render :partial => 'diary_comment', :collection => @entry.visible_comments %>