summaryrefslogtreecommitdiffstats
path: root/app/models/project.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-12-17 13:09:41 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-12-17 13:09:41 +0000
commitee877f6c2ee2810454062f9e27eb0534260476ea (patch)
treea73ff708cbbc3e4bf1ccf84237506cc273ab63be /app/models/project.rb
parentf4e7ed338ead54533ef4157f254a8730aac78728 (diff)
downloadredmine-ee877f6c2ee2810454062f9e27eb0534260476ea.tar.gz
redmine-ee877f6c2ee2810454062f9e27eb0534260476ea.zip
place the '.' on the previous line of the method call at app/models/project.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20653 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/project.rb')
-rw-r--r--app/models/project.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/project.rb b/app/models/project.rb
index aef28744b..a3db05f94 100644
--- a/app/models/project.rb
+++ b/app/models/project.rb
@@ -318,8 +318,8 @@ class Project < ActiveRecord::Base
def commit_logtime_activity
activity_id = Setting.commit_logtime_activity_id.to_i
if activity_id > 0
- activities
- .find_by('id = ? OR parent_id = ?', activity_id, activity_id)
+ activities.
+ find_by('id = ? OR parent_id = ?', activity_id, activity_id)
end
end