Skip to:
Content

BuddyPress.org

Opened 17 years ago

Closed 17 years ago

#816 closed defect (bug) (fixed)

Subject does not display in message thread view

Reported by: rebootnow Owned by: Andy Peatling
Priority: minor Milestone: 1.1
Component: Version:
Severity: Keywords:
Cc: Burt Adsit

Description

The function "messages_view_thread()" displays the detail of a thread, but does not correctly display the subject. This can be seen in the current installation on buddypress.org.

The following line (around line number 495 in "bp-messages-templatetags.php" in the trunk) does not do anything since there is no member called "subject" in the "BP_Messages_Thread" class.

<h2 id="message-subject"><?php echo $thread->subject; ?></h2>

One solution would be to change the above line to:

<h2 id="message-subject"><?php echo $thread->messages[0]->subject; ?></h2>

Change History (4)

#1 @(none)
17 years ago

  • Milestone Private Messaging 1.1

Milestone Private Messaging 1.1 deleted

#2 @apeatling
17 years ago

  • Milestone1.0.4

#3 @apeatling
17 years ago

  • Milestone 1.0.41.1

Milestone 1.0.4 deleted

#4 @apeatling
17 years ago

  • Resolutionfixed
  • Status newclosed

Fixed in trunk.

Note: See TracTickets for help on using tickets.