@@ -7,14 +7,14 | |||
|
7 | 7 | <div class="next-prev-links contextual"> |
|
8 | 8 | <%= link_to_if @prev_issue_id, |
|
9 | 9 | "\xc2\xab #{l(:label_previous)}", |
|
10 | issue_path(@prev_issue_id), | |
|
10 | (@prev_issue_id ? issue_path(@prev_issue_id) : nil), | |
|
11 | 11 | :title => "##{@prev_issue_id}" %> | |
|
12 | 12 | <% if @issue_position && @issue_count %> |
|
13 | 13 | <span class="position"><%= l(:label_item_position, :position => @issue_position, :count => @issue_count) %></span> | |
|
14 | 14 | <% end %> |
|
15 | 15 | <%= link_to_if @next_issue_id, |
|
16 | 16 | "#{l(:label_next)} \xc2\xbb", |
|
17 | issue_path(@next_issue_id), | |
|
17 | (@next_issue_id ? issue_path(@next_issue_id) : nil), | |
|
18 | 18 | :title => "##{@next_issue_id}" %> |
|
19 | 19 | </div> |
|
20 | 20 | <% end %> |
General Comments 0
You need to be logged in to leave comments.
Login now