aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/shared/_categories.html.erb
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2012-02-01 16:34:06 +1300
committerPhilip Arndt <parndt@gmail.com>2012-02-01 16:34:06 +1300
commit33bfa4dd231e4042456b3a70059c9cf57af858cf (patch)
treed51f175d17423e128cf23b294686fbb361a58189 /app/views/refinery/blog/shared/_categories.html.erb
parent30ebf2d338cdd1eff3f78fe4f865c98c02b0ad7e (diff)
downloadrefinerycms-blog-33bfa4dd231e4042456b3a70059c9cf57af858cf.tar.gz
refinerycms-blog-33bfa4dd231e4042456b3a70059c9cf57af858cf.tar.bz2
refinerycms-blog-33bfa4dd231e4042456b3a70059c9cf57af858cf.zip
Added support for new code in Refinery CMS since resolve/refinerycms#1234
Diffstat (limited to 'app/views/refinery/blog/shared/_categories.html.erb')
-rw-r--r--app/views/refinery/blog/shared/_categories.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/refinery/blog/shared/_categories.html.erb b/app/views/refinery/blog/shared/_categories.html.erb
index d7524ef..64f4ee6 100644
--- a/app/views/refinery/blog/shared/_categories.html.erb
+++ b/app/views/refinery/blog/shared/_categories.html.erb
@@ -3,7 +3,7 @@
<ul id='categories'>
<% @categories.each do |category| %>
<li<%= " class='selected'" if @category.present? and @category.id == category.id %>>
- <%= link_to "#{category.title} (#{category.post_count})", main_app.refinery_blog_category_path(category) %>
+ <%= link_to "#{category.title} (#{category.post_count})", refinery.blog_category_path(category) %>
</li>
<% end %>
</ul>