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>
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Milestone Private Messaging 1.1 deleted