Changes between Initial Version and Version 1 of Ticket #26334, comment 9
- Timestamp:
- 12/02/2013 12:02:11 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26334, comment 9
initial v1 15 15 Unfortunately neither of the three merged plugins has that. 16 16 17 A few things can be done:17 A few other things can be done: 18 18 1. Update the three plugins and add the above snippet. 19 19 2. (Maybe) In the 3.8 "upgrade" message, include a reminder to turn off these plugins before upgrading. 20 20 3. As far as I see only DASH causes fatal errors. It seems it used `dashboard` as prefix but the functions weren't renamed on merging with core (it also used the `wp_` prefix which should never happen in a plugin...). Rename the offending functions in core: 21 - `wp_dashboard_activity()` 22 - `dashboard_show_published_posts()` 23 - `dashboard_comments()` 24 - `dashboard_relative_date()` 21 {{{ 22 wp_dashboard_activity() => wp_dash_activity() 23 dashboard_show_published_posts() => wp_dash_published_posts() 24 dashboard_comments() => wp_dash_comments() 25 dashboard_relative_date() => wp_dash_relative_date() 26 }}}