修复因为ISSUE引起的bug;

This commit is contained in:
william 2013-08-13 15:30:48 +08:00
parent 6f54e1680d
commit 0ef943d5f3
2 changed files with 2 additions and 2 deletions

View File

@ -377,7 +377,7 @@ module IssuesHelper
# this method is used to get all projects that tagged one tag # this method is used to get all projects that tagged one tag
# added by william # added by william
def get_issues_by_tag(tag_name) def get_issues_by_tag(tag_name)
Issue.tagged_with(tag_name).by_join_date Issue.tagged_with(tag_name)
end end
end end

View File

@ -58,7 +58,7 @@ module UsersHelper
# this method is used to get all projects that tagged one tag # this method is used to get all projects that tagged one tag
# added by william # added by william
def get_users_by_tag(tag_name) def get_users_by_tag(tag_name)
User.tagged_with(tag_name).by_join_date User.tagged_with(tag_name)
end end
# added by fq # added by fq