Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #26334, comment 9


Ignore:
Timestamp:
12/02/2013 12:02:11 AM (10 years ago)
Author:
azaozz
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26334, comment 9

    initial v1  
    1515Unfortunately neither of the three merged plugins has that.
    1616
    17 A few things can be done:
     17A few other things can be done:
    18181. Update the three plugins and add the above snippet.
    19192. (Maybe) In the 3.8 "upgrade" message, include a reminder to turn off these plugins before upgrading.
    20203. 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{{{
     22wp_dashboard_activity()           => wp_dash_activity()
     23dashboard_show_published_posts()  => wp_dash_published_posts()
     24dashboard_comments()              => wp_dash_comments()
     25dashboard_relative_date()         => wp_dash_relative_date()
     26}}}