diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-02-27 22:07:42 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-02-27 22:07:42 +0000 |
commit | 35678a1c090d577b7c92e3c3fc04ba17d3788645 (patch) | |
tree | 7f04e1c47da1ec4ae873c264cc27232b7953518f /app/views/issues | |
parent | c622ad0b50aa32a4326e4ca5a7e59e10809129cc (diff) | |
download | redmine-35678a1c090d577b7c92e3c3fc04ba17d3788645.tar.gz redmine-35678a1c090d577b7c92e3c3fc04ba17d3788645.zip |
brackets removed around "View all changes" on issues/show
git-svn-id: http://redmine.rubyforge.org/svn/trunk@281 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/show.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 0be9f907b..5acc02bcb 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -72,7 +72,7 @@ end %> <% if @journals_count > @journals.length %>(<%= l(:label_last_changes, @journals.length) %>)<% end %></h3>
<%= render :partial => 'history', :locals => { :journals => @journals } %>
<% if @journals_count > @journals.length %>
- <p><center><small>[ <%= link_to l(:label_change_view_all), :action => 'history', :id => @issue %> ]</small></center></p>
+ <p><center><small><%= link_to l(:label_change_view_all), :action => 'history', :id => @issue %></small></center></p>
<% end %> </div>
|