fix references to uploader metatag

This commit is contained in:
albert
2013-02-18 14:53:41 -05:00
parent 85a8132ad8
commit afb5d3138f
4 changed files with 5 additions and 5 deletions

View File

@@ -58,11 +58,11 @@ class UserPresenter
end
def uploads(template)
template.link_to(user.post_upload_count, template.posts_path(:tags => "uploader:#{user.name}"))
template.link_to(user.post_upload_count, template.posts_path(:tags => "user:#{user.name}"))
end
def deleted_uploads(template)
template.link_to(Post.for_user(user.id).deleted.count, template.posts_path(:tags => "status:deleted uploader:#{user.name}"))
template.link_to(Post.for_user(user.id).deleted.count, template.posts_path(:tags => "status:deleted user:#{user.name}"))
end
def favorites(template)