Opened 12 years ago
Closed 12 years ago
#25882 closed defect (bug) (fixed)
'upgrader_process_complete' action for theme has 'plugin' type
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 3.8 | Priority: | normal |
| Severity: | normal | Version: | 3.7 |
| Component: | Upgrade/Install | Keywords: | commit fixed-major |
| Focuses: | Cc: |
Description
I believe the 'upgrader_process_complete' action for themes has the wrong 'type' parameter in the Theme_Upgrader class in the wp-admin/includes/class-wp-upgrader.php file starting on line 980:
do_action( 'upgrader_process_complete', $this, array( 'action' => 'update', 'type' => 'plugin', 'bulk' => true, 'themes' => $themes, ) );
should be
do_action( 'upgrader_process_complete', $this, array( 'action' => 'update', 'type' => 'theme', 'bulk' => true, 'themes' => $themes, ) );
Change History (6)
#2
@
12 years ago
- Owner set to SergeyBiryukov
- Resolution set to fixed
- Status changed from new to closed
In 26049:
#3
@
12 years ago
- Keywords commit fixed-major added
- Resolution fixed deleted
- Status changed from closed to reopened
This ticket was mentioned in IRC in #wordpress-dev by humungulous. View the logs.
12 years ago
Note: See
TracTickets for help on using
tickets.
Looks like a copy/paste error in [25806].