From 268525dbbb3d223aede29b657ed9d2035221a183 Mon Sep 17 00:00:00 2001 From: Tom McFarlin Date: Mon, 13 May 2013 08:45:22 -0400 Subject: [PATCH] fixing some whitespace --- plugin-boilerplate/class-plugin-boilerplate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-boilerplate/class-plugin-boilerplate.php b/plugin-boilerplate/class-plugin-boilerplate.php index 3a8ea2e..893d782 100644 --- a/plugin-boilerplate/class-plugin-boilerplate.php +++ b/plugin-boilerplate/class-plugin-boilerplate.php @@ -95,7 +95,7 @@ class PluginName { * http://codex.wordpress.org/Plugin_API#Hooks.2C_Actions_and_Filters */ add_action( 'TODO', array( $this, 'action_method_name' ) ); - add_filter(' TODO', array( $this, 'filter_method_name' ) ); + add_filter( 'TODO', array( $this, 'filter_method_name' ) ); }