Opened 13 years ago
Closed 9 years ago
#20468 closed enhancement (fixed)
Recently active network plugins
Reported by: | johnbillion | Owned by: | johnbillion |
---|---|---|---|
Milestone: | 4.4 | Priority: | normal |
Severity: | normal | Version: | 3.0 |
Component: | Plugins | Keywords: | has-patch needs-testing |
Focuses: | administration, multisite | Cc: |
Description
There's no 'Recently Active' list on the Plugins screen in Network Admin. This should be simple enough to add in.
Attachments (2)
Change History (16)
#7
@
9 years ago
- Focuses ui removed
- Keywords needs-patch added
- Milestone changed from Awaiting Review to 4.4
- Owner set to johnbillion
- Status changed from new to accepted
- Type changed from feature request to enhancement
The Recently Activated list is still limited to individual sites on Multisite. Patch coming up.
#8
@
9 years ago
- Keywords has-patch needs-testing added; needs-patch removed
20468.patch implements recently network-active plugins on the network admin screen.
Wanted: testers to click things and test this.
#9
@
9 years ago
First patch was broken. 20468.2.patch is the one to test.
#10
@
9 years ago
We will be testing for feedback this during the afternoon (EST) during a Contributing to WordPress Core workshop at WordCamp RI.
This ticket was mentioned in Slack in #core-multisite by jeremyfelt. View the logs.
9 years ago
Note: See
TracTickets for help on using
tickets.
I think this is because the
*_option
functions are being used for the 'recently_activated' option, which is causing plugins activated through the network plugins screen to appear in the primary site admin plugins screen as 'Recently Active' rather than in the network admin plugins screen. Since the same file (wp-admin/plugins.php
) is used for both network admin & individual site admin plugin pages, it might mean using the*_site_option
functions ifis_network_admin()
.I can try and patch if this sounds like the right approach...thoughts?