public
Description: The Git TextMate Bundle
Homepage: http://tim.theenchanter.com/
Clone URL: git://github.com/timcharper/git-tmbundle.git
fixed a regression that broke diffing of submodule directories
timcharper (author)
Thu Aug 28 10:20:11 -0700 2008
commit  aeff1068a4097acc7f4ee2f8ca1747a8a65383c1
tree    943651c8605e085f7577b2de14dcfb0daaab7a3a
parent  f3f63460b0b38b73a52694f6d7682cb100098f37
...
34
35
36
37
 
38
39
40
...
34
35
36
 
37
38
39
40
0
@@ -34,7 +34,7 @@ class DiffController < ApplicationController
0
       git.submodule.all(:path => path).each do |submodule|
0
         next if (diff_results = submodule.git.diff(:since => "HEAD")).blank?
0
         render_submodule_header(submodule)
0
- render("_diff_results", :locals => {:git => submodule.git, :diff_results => diff_results})
0
+ render("_diff_results", :locals => {:git => submodule.git, :diff_results => diff_results, :diff_check_results => git.config.show_diff_check? ? git.diff_check(:path => path, :since => "HEAD") : []})
0
       end
0
     end
0
   end

Comments

    No one has commented yet.