Advanced Sidebar Menu - Version 3.0.2

Version Description

*Bugfixes

Download this release

Release Info

Developer Mat Lipe
Plugin Icon 128x128 Advanced Sidebar Menu
Version 3.0.2
Comparing to
See all releases

Code changes from version 3.0.1 to 3.0.2

advanced-sidebar-menu.php CHANGED
@@ -4,9 +4,9 @@ Plugin Name: Advanced Sidebar Menu
4
  Plugin URI: http://lipeimagination.info
5
  Description: Creates dynamic menu based on child/parent relationship.
6
  Author: Mat Lipe
7
- Version: 3.0.1
8
  Author URI: http://lipeimagination.info
9
- Since: 4/25/12
10
  Email: mat@lipeimagination.info
11
 
12
  */
4
  Plugin URI: http://lipeimagination.info
5
  Description: Creates dynamic menu based on child/parent relationship.
6
  Author: Mat Lipe
7
+ Version: 3.0.2
8
  Author URI: http://lipeimagination.info
9
+ Since: 5/19/12
10
  Email: mat@lipeimagination.info
11
 
12
  */
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === Plugin Name ===
2
  Contributors: Mat Lipe
3
- Donate link: http://lipeimagination.info/contact/
4
  Tags: menus, sidebar menu, heirchy, category menu, pages menu
5
  Requires at least: 3.1
6
- Tested up to: 3.3.1
7
- Stable tag: 3.0.1
8
- Version: 3.0.1
9
 
10
  == Description ==
11
 
@@ -58,6 +58,10 @@ You may want to use something like margins to set the levels apart.
58
 
59
  == Changelog ==
60
 
 
 
 
 
61
  = 3.0 =
62
  * Added a categories menu widget with the same functionality as the pages widget
63
  * Added the ability to edit "views" files through your child theme to edit output and css
@@ -97,7 +101,8 @@ You may want to use something like margins to set the levels apart.
97
 
98
 
99
  == Screenshots ==
100
- 1. The widget Menu as of 2.0.
 
101
 
102
  == Upgrade Notice ==
103
 
1
  === Plugin Name ===
2
  Contributors: Mat Lipe
3
+ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40lipeimagination%2einfo&lc=US&item_name=Advanced%20Sidebar%20Menu&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
4
  Tags: menus, sidebar menu, heirchy, category menu, pages menu
5
  Requires at least: 3.1
6
+ Tested up to: 3.3.2
7
+ Stable tag: 3.0.2
8
+ Version: 3.0.2
9
 
10
  == Description ==
11
 
58
 
59
  == Changelog ==
60
 
61
+ = 3.0.2 =
62
+ *Bugfixes
63
+
64
+
65
  = 3.0 =
66
  * Added a categories menu widget with the same functionality as the pages widget
67
  * Added the ability to edit "views" files through your child theme to edit output and css
101
 
102
 
103
  == Screenshots ==
104
+
105
+ 1. The widget Menu as of 2
106
 
107
  == Upgrade Notice ==
108
 
widgets/category.widget.php CHANGED
@@ -5,7 +5,7 @@
5
  * Creates a Widget of parent Child Categories
6
  *
7
  * @author mat lipe
8
- * @since 4/13/12
9
  * @package Advanced Sidebar Menu
10
  *
11
  */
@@ -86,7 +86,7 @@ class advanced_sidebar_menu_category extends WP_Widget {
86
 
87
 
88
  /* Create the widget. */
89
- $this->WP_Widget( 'advanced_sidebar_menu_category', 'Advanced Sidebar Categories Menu', $widget_ops, $control_ops );
90
  }
91
 
92
 
5
  * Creates a Widget of parent Child Categories
6
  *
7
  * @author mat lipe
8
+ * @since 5/16/12
9
  * @package Advanced Sidebar Menu
10
  *
11
  */
86
 
87
 
88
  /* Create the widget. */
89
+ $this->WP_Widget( 'advanced_sidebar_menu_category', 'Advanced Sidebar Categories Menu', $widget_ops );
90
  }
91
 
92
 
widgets/page.widget.php CHANGED
@@ -5,7 +5,7 @@
5
  * Creates a Widget of parent Child Pages
6
  *
7
  * @author mat lipe
8
- * @since 4/13/12
9
  * @package Advanced Sidebar Menu
10
  *
11
  */
@@ -84,7 +84,7 @@ class advanced_sidebar_menu_page extends WP_Widget {
84
 
85
 
86
  /* Create the widget. */
87
- $this->WP_Widget( 'advanced_sidebar_menu', 'Advanced Sidebar Pages Menu', $widget_ops, $control_ops );
88
  }
89
 
90
 
5
  * Creates a Widget of parent Child Pages
6
  *
7
  * @author mat lipe
8
+ * @since 5/16/12
9
  * @package Advanced Sidebar Menu
10
  *
11
  */
84
 
85
 
86
  /* Create the widget. */
87
+ $this->WP_Widget( 'advanced_sidebar_menu', 'Advanced Sidebar Pages Menu', $widget_ops);
88
  }
89
 
90