From f01b41eb1ede2ee0cb59fc3e5182704b8cb8bdb4 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 20 Jul 2012 15:09:40 +0000 Subject: [PATCH] Fix order of @param's for deactivate_plugins(). props Viper007Bond, fixes #21269. git-svn-id: https://develop.svn.wordpress.org/trunk@21291 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/plugin.php b/wp-admin/includes/plugin.php index 083b5c429d..941f545d54 100644 --- a/wp-admin/includes/plugin.php +++ b/wp-admin/includes/plugin.php @@ -573,9 +573,9 @@ function activate_plugin( $plugin, $redirect = '', $network_wide = false, $silen * @since 2.5.0 * * @param string|array $plugins Single plugin or list of plugins to deactivate. + * @param bool $silent Prevent calling deactivation hooks. Default is false. * @param mixed $network_wide Whether to deactivate the plugin for all sites in the network. * A value of null (the default) will deactivate plugins for both the site and the network. - * @param bool $silent Prevent calling deactivation hooks. Default is false. */ function deactivate_plugins( $plugins, $silent = false, $network_wide = null ) { if ( is_multisite() )