Bugfix: Category listings

Fixed bug where clicking on a category link would stomp on the "All Pages" listing.
This commit is contained in:
Jacques Distler 2007-09-09 23:20:06 -05:00
parent ed68d975df
commit 9035c98dc5

View file

@ -31,6 +31,6 @@ def initialize(match_data, content)
# TODO move presentation of page metadata to controller/view
def url(category)
%{<a class="category_link" href="../list/?category=#{category}">#{category}</a>}
%{<a class="category_link" href="../list/#{category}">#{category}</a>}
end
end