diff options
author | Johan Sørensen <johan@johansorensen.com> | 2009-03-24 13:47:20 +0100 |
---|---|---|
committer | Johan Sørensen <johan@johansorensen.com> | 2009-04-22 15:17:21 +0200 |
commit | 591bbd2e31c02a1dedbd64fb1b18b050b53c41d0 (patch) | |
tree | 97254af5032eb1b00425bd1837c45451178fb6c9 /app/models | |
parent | 253fb18ea06bba44555884842897f9ab43b81bab (diff) | |
download | gitorious-mainline-outdated-591bbd2e31c02a1dedbd64fb1b18b050b53c41d0.zip gitorious-mainline-outdated-591bbd2e31c02a1dedbd64fb1b18b050b53c41d0.tar.gz gitorious-mainline-outdated-591bbd2e31c02a1dedbd64fb1b18b050b53c41d0.tar.bz2 |
Message inbox have the user as the breadcrumb_parent
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/message.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/message.rb b/app/models/message.rb index d6c6c8e..c6bfd5a 100644 --- a/app/models/message.rb +++ b/app/models/message.rb @@ -68,7 +68,7 @@ class Message < ActiveRecord::Base end def breadcrumb_parent - in_reply_to || Breadcrumb::Messages.new + in_reply_to || Breadcrumb::Messages.new(sender) end def display_state_for(a_user) |