diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-01-09 09:34:26 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-01-09 09:34:26 +0200 |
commit | aa97ff7fde07a682db59bbcfbac21cf35d8acc08 (patch) | |
tree | 2eec50aad91fc7257ca3f709e4b48a28c42943cb /app | |
parent | f9528bfb86817efa4af6eaab464936abb3f44ecb (diff) | |
download | gitlab-ce-aa97ff7fde07a682db59bbcfbac21cf35d8acc08.tar.gz |
Fixed tree logs for branches with slash. Fixed remember of path when switch branch
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/refs_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/refs_controller.rb b/app/controllers/refs_controller.rb index e4eb2d33ea6..09d9eb51b82 100644 --- a/app/controllers/refs_controller.rb +++ b/app/controllers/refs_controller.rb @@ -12,7 +12,7 @@ class RefsController < ProjectResourceController respond_to do |format| format.html do new_path = if params[:destination] == "tree" - project_tree_path(@project, @ref) + project_tree_path(@project, (@ref + "/" + params[:path])) else project_commits_path(@project, @ref) end |