diff options
author | Jeff Shumate <jeff@catapulsion.net> | 2012-01-25 22:00:56 -0700 |
---|---|---|
committer | Jeff Shumate <jeff@catapulsion.net> | 2012-01-25 22:00:56 -0700 |
commit | f62ad53f8f63f90ab81153d89ca9fcddd0ff49d9 (patch) | |
tree | 28b6e80023974f25e75e837b732694da73bf3152 /app | |
parent | be73028ee871ffbc05fff474cd44615134c18ab0 (diff) | |
download | refinerycms-blog-f62ad53f8f63f90ab81153d89ca9fcddd0ff49d9.tar.gz refinerycms-blog-f62ad53f8f63f90ab81153d89ca9fcddd0ff49d9.tar.bz2 refinerycms-blog-f62ad53f8f63f90ab81153d89ca9fcddd0ff49d9.zip |
really fix issue 175 path error in _nav
Diffstat (limited to 'app')
-rw-r--r-- | app/views/refinery/blog/posts/_nav.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/refinery/blog/posts/_nav.html.erb b/app/views/refinery/blog/posts/_nav.html.erb index 9d0fd19..3daacab 100644 --- a/app/views/refinery/blog/posts/_nav.html.erb +++ b/app/views/refinery/blog/posts/_nav.html.erb @@ -1,7 +1,7 @@ <nav id="next_prev_article"> <% if @post.next.present? -%> <%= link_to (truncate(@post.next.title) + " »").html_safe, - main_app.refinery_blog_post_path(@post.prev), + main_app.refinery_blog_post_path(@post.next), :class => 'next' %> <% end -%> |