Actions
Patch #1743
closedDon't display 'show_diff' button on wiki's history page if there is only 1 version
Start date:
2008-08-04
Due date:
% Done:
100%
Estimated time:
Description
On wiki's history page, if there is only 1 version, the radio buttons are hided but the show_diff button is still displayed.
To change this, modify the views\wiki\hisory.rhtml at line 33:
<%= submit_tag l(:label_view_diff), :class => 'small' %>
to:
<%= submit_tag l(:label_view_diff), :class => 'small' if show_diff %>
Actions