scm: git: change model report_last_commit() name to extra_report_last_commit() (#7047).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5661 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-05-06 03:43:11 +00:00
parent 1ea1606007
commit 773b248669
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ class Repository::Git < Repository
'Git' 'Git'
end end
def report_last_commit def extra_report_last_commit
true true
end end
@ -77,7 +77,7 @@ class Repository::Git < Repository
def entries(path=nil, identifier=nil) def entries(path=nil, identifier=nil)
scm.entries(path, scm.entries(path,
identifier, identifier,
options = {:report_last_commit => report_last_commit}) options = {:report_last_commit => extra_report_last_commit})
end end
# In Git and Mercurial, revisions are not in date order. # In Git and Mercurial, revisions are not in date order.