From ff44a40287afae23f1678b22a7459d3178bee385 Mon Sep 17 00:00:00 2001 From: Tom McFarlin Date: Sat, 11 May 2013 17:06:34 -0400 Subject: [PATCH] adding one space to comply with coding conventions --- plugin-boilerplate/plugin-boilerplate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-boilerplate/plugin-boilerplate.php b/plugin-boilerplate/plugin-boilerplate.php index abcc7ab..9a4254c 100644 --- a/plugin-boilerplate/plugin-boilerplate.php +++ b/plugin-boilerplate/plugin-boilerplate.php @@ -105,7 +105,7 @@ class PluginName { add_action( 'wp_enqueue_scripts', array( $this, 'register_plugin_scripts' ) ); // Register hooks that are fired when the plugin is activated, deactivated, and uninstalled, respectively. - register_activation_hook(__FILE__, array( $this, 'activate' ) ); + register_activation_hook( __FILE__, array( $this, 'activate' ) ); register_deactivation_hook( __FILE__, array( $this, 'deactivate' ) ); /*