rails2.3.4でrails-footnotesを使うときの不具合

なんだかviewレベルのエラーだと良い感じで表示してくれない

lib/templates/rescues/template_error.erbの一部をちょいと変えれば動いた(↓更新後の一部のみ)

<% @real_exception = @exception
   @exception = @exception.original_exception || @exception %>
<%= render(@rescues_path.to_s + "/rescues/trace.erb", false) %>
<% @exception = @real_exception %>

<%= render(@rescues_path.to_s + "/rescues/request_and_response.erb", false) %>