Opened 14 years ago
Closed 14 years ago
#1657 closed defect (bug) (fixed)
Contextual help text fixes
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | 2.1 | Priority: | normal |
| Severity: | normal | Version: | 2.0 |
| Component: | General - Administration | 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.
Might also want to consider just passing
'<p>' . implode( '</p><p>', $bbp_contextual_help ) . '</p>'(untested) to add_contextual_help() and dumping $contextual_help.