diff --git a/app/views/posts/show.html.erb b/app/views/posts/show.html.erb
index ae3168f4b..7fa0b6706 100644
--- a/app/views/posts/show.html.erb
+++ b/app/views/posts/show.html.erb
@@ -102,8 +102,10 @@
- <% cache("p/#{@post.id}/n/#{@post.last_noted_at.to_i}") do %>
- <%= render :partial => "notes/note", :collection => @post.notes.active %>
+ <% if @post.has_notes? %>
+ <% cache("p/#{@post.id}/n/#{@post.last_noted_at.to_i}") do %>
+ <%= render :partial => "notes/note", :collection => @post.notes.active %>
+ <% end %>
<% end %>