Opened 15 years ago
Closed 15 years ago
#1657 closed defect (bug) (fixed)
Contextual help text fixes
| Reported by: | duck_ | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 2.1 |
| Component: | General - Administration | Version: | 2.0 |
| Severity: | normal | Keywords: | has-patch |
| Cc: |
Description
Attached is a fix for the following issues:
$contextual_help = array(); ... $contextual_help .= '<p>' . $paragraph . '</p>';
Causes "Array" to appear at the top of contextual help, see help on the New Forum page for example.
Topic New/Edit help is overwritten by the topic Post Rows help.
Unnecessary global $bbp that was missed in [3348].
:)
Attachments (1)
Change History (5)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Might also want to consider just passing
'<p>' . implode( '</p><p>', $bbp_contextual_help ) . '</p>'(untested) to add_contextual_help() and dumping $contextual_help.