diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-07-25 10:02:12 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-07-25 10:02:12 +0000 |
commit | 91f7cbb79db053e9f10f87e82fe6348245d7dfd1 (patch) | |
tree | cbf531dbc9d7337194ebbfa5b681d5a419435a0c /app/views/messages | |
parent | 72ce4f3ab95be1fc7b44a00a8e4f19844372c3fb (diff) | |
download | redmine-91f7cbb79db053e9f10f87e82fe6348245d7dfd1.tar.gz redmine-91f7cbb79db053e9f10f87e82fe6348245d7dfd1.zip |
Fixed: Forum message permalinks don't take pagination into account (#5945).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3877 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/messages')
-rw-r--r-- | app/views/messages/show.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/messages/show.rhtml b/app/views/messages/show.rhtml index 5c949d48f..a27b5d114 100644 --- a/app/views/messages/show.rhtml +++ b/app/views/messages/show.rhtml @@ -30,7 +30,7 @@ </div> <h4> <%= avatar(message.author, :size => "24") %> - <%= link_to h(message.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => @topic, :anchor => "message-#{message.id}" } %> + <%= link_to h(message.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => @topic, :r => message, :anchor => "message-#{message.id}" } %> - <%= authoring message.created_on, message.author %> </h4> |