From ed6941a0f44954d1912a6db14850f5ff5e83cb89 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 16 Apr 2013 09:53:02 +0000 Subject: [PATCH] Fix several copy/paste errors in register_deactivation_hook() description. props Caspie. fixes #24097. git-svn-id: http://core.svn.wordpress.org/trunk@23999 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/plugin.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/wp-includes/plugin.php b/wp-includes/plugin.php index f97395d43b..1168f079e0 100644 --- a/wp-includes/plugin.php +++ b/wp-includes/plugin.php @@ -604,11 +604,12 @@ function plugin_dir_url( $file ) { * Set the activation hook for a plugin. * * When a plugin is activated, the action 'activate_PLUGINNAME' hook is - * activated. In the name of this hook, PLUGINNAME is replaced with the name of - * the plugin, including the optional subdirectory. For example, when the plugin - * is located in wp-content/plugins/sampleplugin/sample.php, then the name of - * this hook will become 'activate_sampleplugin/sample.php'. When the plugin - * consists of only one file and is (as by default) located at + * called. In the name of this hook, PLUGINNAME is replaced with the name + * of the plugin, including the optional subdirectory. For example, when the + * plugin is located in wp-content/plugins/sampleplugin/sample.php, then + * the name of this hook will become 'activate_sampleplugin/sample.php'. + * + * When the plugin consists of only one file and is (as by default) located at * wp-content/plugins/sample.php the name of this hook will be * 'activate_sample.php'. * @@ -628,21 +629,21 @@ function register_activation_hook($file, $function) { * Set the deactivation hook for a plugin. * * When a plugin is deactivated, the action 'deactivate_PLUGINNAME' hook is - * deactivated. In the name of this hook, PLUGINNAME is replaced with the name + * called. In the name of this hook, PLUGINNAME is replaced with the name * of the plugin, including the optional subdirectory. For example, when the * plugin is located in wp-content/plugins/sampleplugin/sample.php, then - * the name of this hook will become 'activate_sampleplugin/sample.php'. + * the name of this hook will become 'deactivate_sampleplugin/sample.php'. * * When the plugin consists of only one file and is (as by default) located at * wp-content/plugins/sample.php the name of this hook will be - * 'activate_sample.php'. + * 'deactivate_sample.php'. * * @package WordPress * @subpackage Plugin * @since 2.0 * * @param string $file The filename of the plugin including the path. - * @param callback $function the function hooked to the 'activate_PLUGIN' action. + * @param callback $function the function hooked to the 'deactivate_PLUGIN' action. */ function register_deactivation_hook($file, $function) { $file = plugin_basename($file);