Opened 3 years ago
Closed 3 years ago
#12752 closed defect (bug) (invalid)
do_action('activate_plugin') called twice
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Plugins | Version: | 3.0 |
| Severity: | normal | Keywords: | has-patch reporter-feedback |
| Cc: |
Description
In activate_plugin(), this line appears twice:
do_action( 'activate_' . trim( $plugin ) );
Attachments (1)
Change History (4)
- Keywords reporter-feedback added; commit removed
The one you pointed out above is do_action( 'activate_' . trim( $plugin ) ); and the one you removed is do_action( 'activate_plugin', trim( $plugin) );.
Note: See
TracTickets for help on using
tickets.

Where is the second appearance?