1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-04-29 01:43:16 +03:00

adding one space to comply with coding conventions

This commit is contained in:
Tom McFarlin 2013-05-11 17:06:34 -04:00
parent a2987b80ca
commit ff44a40287

View file

@ -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' ) );
/*