From 727801d7c120c359ee9a2bef1a65771be2e3faad Mon Sep 17 00:00:00 2001 From: Aricura Date: Sat, 24 May 2014 12:40:18 +0000 Subject: [PATCH] - changed widget name from "footnotes widget" to "footnotes". Styling seems to be disabled for widget names :( git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@920342 b8457f37-d9ea-0310-8a92-e5e31aec5664 --- classes/footnotes_widget.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/footnotes_widget.php b/classes/footnotes_widget.php index 19e3338..4033d16 100644 --- a/classes/footnotes_widget.php +++ b/classes/footnotes_widget.php @@ -14,7 +14,7 @@ class Class_FootnotesWidget extends WP_Widget { function Class_FootnotesWidget() { $widget_ops = array( 'classname' => 'Class_FootnotesWidget', 'description' => __('The widget defines the position of the reference container if set to "widget area".', FOOTNOTES_PLUGIN_NAME) ); $control_ops = array( 'width' => 300, 'height' => 350, 'id_base' => 'footnotes_widget' ); - $this->WP_Widget( 'footnotes_widget', sprintf(__("%s Widget", FOOTNOTES_PLUGIN_NAME), FOOTNOTES_PLUGIN_PUBLIC_NAME), $widget_ops, $control_ops ); + $this->WP_Widget( 'footnotes_widget', FOOTNOTES_PLUGIN_PUBLIC_NAME, $widget_ops, $control_ops ); } /**