diff --git a/class/hooks.php b/class/hooks.php index 70af711..fdc321c 100644 --- a/class/hooks.php +++ b/class/hooks.php @@ -1,6 +1,6 @@ initialize_dashboard(); diff --git a/class/task.php b/class/task.php index b6313fc..812a6df 100644 --- a/class/task.php +++ b/class/task.php @@ -398,7 +398,7 @@ class Footnotes_Task { public static $a_bool_syntax_error_flag = true; /** - * Register WordPress Hooks to replace Footnotes in the content of a public page. + * Register WordPress hooks to replace Footnotes in the content of a public page. * * @since 1.5.0 * diff --git a/footnotes.php b/footnotes.php index f5d8563..b473965 100755 --- a/footnotes.php +++ b/footnotes.php @@ -109,7 +109,7 @@ require_once dirname( __FILE__ ) . '/includes.php'; // Add Plugin Links to the "installed plugins" page. $l_str_plugin_file = 'footnotes/footnotes.php'; -add_filter( "plugin_action_links_{$l_str_plugin_file}", array( 'Hooks', 'get_plugin_links' ), 10, 2 ); +add_filter( "plugin_action_links_{$l_str_plugin_file}", array( 'Footnotes_Hooks', 'get_plugin_links' ), 10, 2 ); // Initialize the Plugin. $g_obj_mci_footnotes = new Footnotes();