Opened 17 years ago
Closed 17 years ago
#9583 closed defect (bug) (fixed)
Missing hook for comments custom column management
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | 2.8 | Priority: | normal |
| Severity: | normal | Version: | 2.7.1 |
| Component: | General | Keywords: | has-patch tested |
| Focuses: | Cc: |
Description
Current WP version (2.7.1) doesn't have hooks for generation contents of custom columns on following pages: Comments, Categories, Link Categories, Tags, Users. On this this page, I found that fixes for all but 1st one (for Comments) are already in SVN and in nightly builds (I checked this).
I have created patch for this missing hook.
Attachments (2)
Change History (5)
#2
@
17 years ago
- Keywords tested added; needs-testing removed
- Milestone changed from 2.7.2 to 2.8
- Summary changed from Missing hooks for custom columns to Missing hook for comments custom column management
Note: See
TracTickets for help on using
tickets.
+1
Patch applied cleanly against r11001. Though I'm submitting an updated version which is based on a diff performed from the root of trunk (and against the latest rev).
Tested, and works.
To clarify the ticket: in
wp-admin/includes/template.php, the function_wp_comment_row()does not specify a default branch in the switch statement to allow a plugin to manage custom columns for comments (i.e., via anadd_action('manage_comments_custom_column', ...)).All other admin row handlers provide such an action/filter to hook.