Merge pull request #1295 from jouve/fix_mr_form

fix merge request form
This commit is contained in:
Dmitriy Zaporozhets 2012-08-25 06:16:40 -07:00
commit 8d65f51e63

View file

@ -103,10 +103,12 @@ class MergeRequestsController < ApplicationController
def branch_from
@commit = project.commit(params[:ref])
@commit = CommitDecorator.decorate(@commit)
end
def branch_to
@commit = project.commit(params[:ref])
@commit = CommitDecorator.decorate(@commit)
end
protected