1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-20 12:12:10 +03:00

Adjusting comment typo and removing closing if statement (issue #1)

This commit is contained in:
Tom McFarlin 2011-10-06 22:55:47 -04:00
parent 49ac1357eb
commit e1b604d921

View file

@ -37,7 +37,7 @@ class TODO {
*/ */
function __construct() { function __construct() {
// Define constnats used throughout the plugin // Define constants used throughout the plugin
$this->init_plugin_constants(); $this->init_plugin_constants();
load_plugin_textdomain(PLUGIN_LOCALE, false, dirname(plugin_basename(__FILE__)) . '/lang'); load_plugin_textdomain(PLUGIN_LOCALE, false, dirname(plugin_basename(__FILE__)) . '/lang');
@ -56,8 +56,6 @@ class TODO {
add_action('TODO', array($this, 'action_method_name')); add_action('TODO', array($this, 'action_method_name'));
add_filter('TODO', array($this, 'filter_method_name')); add_filter('TODO', array($this, 'filter_method_name'));
} // end if
} // end constructor } // end constructor
/*--------------------------------------------* /*--------------------------------------------*