diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-21 13:52:47 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-21 13:52:47 +0000 |
commit | a21ab3eaf90e2c622100de074153efc2af76594a (patch) | |
tree | e73f810026f9641efa0c216a19ad67a396f4ceac /lib/redmine | |
parent | 104868faa7128a3014caa32802a89360e46409c3 (diff) | |
download | redmine-a21ab3eaf90e2c622100de074153efc2af76594a.tar.gz redmine-a21ab3eaf90e2c622100de074153efc2af76594a.zip |
remove spaces inside {} of lib/redmine/project_jump_box.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20463 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine')
-rw-r--r-- | lib/redmine/project_jump_box.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/project_jump_box.rb b/lib/redmine/project_jump_box.rb index d62ed684d..b8f332008 100644 --- a/lib/redmine/project_jump_box.rb +++ b/lib/redmine/project_jump_box.rb @@ -44,7 +44,7 @@ module Redmine return if project.blank? || project.id.blank? id_array = recently_used_project_ids - id_array.reject!{ |i| i == project.id } + id_array.reject!{|i| i == project.id} # we dont want bookmarks in the recently used list: id_array.unshift(project.id) unless bookmark?(project) self.recently_used_project_ids = id_array[0, recent_projects_count] |