beef-articles 0.3.16 → 0.3.18
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/app/views/articles/show.html.erb +2 -1
- data/articles.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.18
|
@@ -21,7 +21,7 @@
|
|
21
21
|
<% if @article.allow_comments? or @article.comments.any? -%>
|
22
22
|
<div id="comments">
|
23
23
|
<h2>Comments</h2>
|
24
|
-
|
24
|
+
|
25
25
|
<% if @article.comments.empty? -%>
|
26
26
|
<p class="no-comments">There are currently no comments.</p>
|
27
27
|
<% else -%>
|
@@ -30,6 +30,7 @@
|
|
30
30
|
|
31
31
|
<% if @article.allow_comments? %>
|
32
32
|
<h2 id="respond">Leave a Comment</h2>
|
33
|
+
<p>*Required fields</p>
|
33
34
|
<%= render :partial => 'comments/form', :locals => { :commentable => @article } %>
|
34
35
|
<% end -%>
|
35
36
|
</div><!-- eo:comments -->
|
data/articles.gemspec
CHANGED