Make WordPress Core

Ticket #25229: wp-admin-includes-plugin.3.diff

File wp-admin-includes-plugin.3.diff, 2.6 KB (added by DrewAPicture, 11 years ago)

Action fixes after [25474] and [25477]

  • src/wp-admin/includes/plugin.php

     
    541541
    542542                if ( ! $silent ) {
    543543                        /**
    544                          * Fires before a plugin is activated in activate_plugin() when the $silent parameter is false
     544                         * Fires before a plugin is activated in activate_plugin() when the $silent parameter is false.
    545545                         *
    546546                         * @since 2.9.0
    547547                         *
    548                          * @param string $plugin       Basename of the plugin path from {@see activate_plugin()}.
    549                          * @param bool   $network_wide Argument from {@see activate_plugin()}.
     548                         * @param string $plugin       Plugin path to main plugin file with plugin data.
     549                         * @param bool   $network_wide Whether to enable the plugin for all sites in the network
     550                         *                             or just the current site. Multisite only. Default is false.
    550551                         */
    551552                        do_action( 'activate_plugin', $plugin, $network_wide );
    552553
    553554                        /**
    554                          * Fires before a plugin is activated in activate_plugin() when the $silent parameter is false
     555                         * Fires before a plugin is activated in activate_plugin() when the $silent parameter is false.
    555556                         *
    556557                         * The action concatenates the 'activate_' prefix with the $plugin value passed to
    557                          * activate_plugin() to create a dynamically named action.
     558                         * activate_plugin() to create a dynamically-named action.
    558559                         *
    559560                         * @since 2.0.0
    560561                         *
    561                          * @param bool $network_wide Argument from {@see activate_plugin()}.
     562                         * @param bool $network_wide Whether to enable the plugin for all sites in the network
     563                         *                           or just the current site. Multisite only. Default is false.
    562564                         */
    563565                        do_action( 'activate_' . $plugin, $network_wide );
    564566                }
     
    574576
    575577                if ( ! $silent ) {
    576578                        /**
    577                          * Fires after a plugin has been activated in activate_plugin() when the $silent parameter is false
     579                         * Fires after a plugin has been activated in activate_plugin() when the $silent parameter is false.
    578580                         *
    579581                         * @since 2.9.0
    580582                         *
    581                          * @param string $plugin       Basename of the plugin path from {@see activate_plugin()}.
    582                          * @param bool   $network_wide Argument from {@see activate_plugin()}.
     583                         * @param string $plugin       Plugin path to main plugin file with plugin data.
     584                         * @param bool   $network_wide Whether to enable the plugin for all sites in the network
     585                         *                             or just the current site. Multisite only. Default is false.
    583586                         */
    584587                        do_action( 'activated_plugin', $plugin, $network_wide );
    585588                }