##// END OF EJS Templates
Fixed a nil method error in Setting#value=...
Fixed a nil method error in Setting#value= git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3417 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2661:70340910de1d
r3303:4a67c211ca7b
Show More
_changesets.rhtml
8 lines | 458 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _changesets.rhtml
Jean-Philippe Lang
Added related changesets messages on issue details view....
r1071 <% changesets.each do |changeset| %>
Jean-Philippe Lang
Slight style changes on issue associated changesets list....
r1098 <div class="changeset <%= cycle('odd', 'even') %>">
<p><%= link_to("#{l(:label_revision)} #{changeset.revision}",
Jean-Philippe Lang
Link to the appropriate repository (#3376)....
r2661 :controller => 'repositories', :action => 'revision', :id => changeset.project, :rev => changeset.revision) %><br />
Jean-Philippe Lang
Maps repository users to Redmine users (#1383)....
r2004 <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
Jean-Philippe Lang
Slight style changes on issue associated changesets list....
r1098 <%= textilizable(changeset, :comments) %>
</div>
Jean-Philippe Lang
Added related changesets messages on issue details view....
r1071 <% end %>