From 0ef943d5f3bbc7d33be78c27a0e77c63dfa55d65 Mon Sep 17 00:00:00 2001 From: william Date: Tue, 13 Aug 2013 15:30:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=9B=A0=E4=B8=BAISSUE?= =?UTF-8?q?=E5=BC=95=E8=B5=B7=E7=9A=84bug=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/helpers/issues_helper.rb | 2 +- app/helpers/users_helper.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 06ea865c7..4ecc33690 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -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 diff --git a/app/helpers/users_helper.rb b/app/helpers/users_helper.rb index 47b7d727a..8a2ab765f 100644 --- a/app/helpers/users_helper.rb +++ b/app/helpers/users_helper.rb @@ -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