修复因为ISSUE引起的bug;

exceptionHandle
william 12 years ago
parent 6f54e1680d
commit 0ef943d5f3

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

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

Loading…
Cancel
Save