Dropdown Menu Widget - Version 1.2.6

Version Description

  • Fixed a minor bug.
Download this release

Release Info

Developer mattsay
Plugin Icon wp plugin Dropdown Menu Widget
Version 1.2.6
Comparing to
See all releases

Code changes from version 1.2.5 to 1.2.6

Files changed (2) hide show
  1. readme.txt +8 -1
  2. shailan.DropDownMenu.php +4 -8
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://shailan.com/donate
4
  Tags: css, dropdown, menu, widget, pages, categories
5
  Requires at least: 2.5
6
  Tested up to: 2.9
7
- Stable tag: 1.2.5
8
 
9
  This widget adds a beatiful vertical/horizontal CSS only dropdown menu of pages OR categories of your blog.
10
 
@@ -47,6 +47,13 @@ You can submit errors and bugs using the [online form](http://shailan.com/contac
47
 
48
  == Changelog ==
49
 
 
 
 
 
 
 
 
50
  = 1.2.4 =
51
  * Fixed category walker for the advanced styling.
52
 
4
  Tags: css, dropdown, menu, widget, pages, categories
5
  Requires at least: 2.5
6
  Tested up to: 2.9
7
+ Stable tag: 1.2.6
8
 
9
  This widget adds a beatiful vertical/horizontal CSS only dropdown menu of pages OR categories of your blog.
10
 
47
 
48
  == Changelog ==
49
 
50
+ = 1.2.6 =
51
+ * Fixed a minor bug.
52
+
53
+ = 1.2.5 =
54
+ * Added translation support.
55
+ * Added pot file for translators.
56
+
57
  = 1.2.4 =
58
  * Fixed category walker for the advanced styling.
59
 
shailan.DropDownMenu.php CHANGED
@@ -3,13 +3,13 @@
3
  Plugin Name: Shailan Dropdown Menu Widget
4
  Plugin URI: http://shailan.com/wordpress/plugins/dropdown-menu
5
  Description: A multi widget to generate drop-down menus from your pages and categories. This widget is best used in <a href="http://shailan.com">Shailan.com</a> themes. You can find more widgets, plugins and themes at <a href="http://shailan.com">shailan.com</a>.
6
- Version: 1.2.5
7
  Author: Matt Say
8
  Author URI: http://shailan.com
9
  Text Domain: shailan-dropdown-menu
10
  */
11
 
12
- define('SHAILAN_DM_VERSION','1.2.5');
13
  define('SHAILAN_DM_TITLE', 'Dropdown Menu');
14
  define('SHAILAN_DM_FOLDER', 'dropdown-menu-widget');
15
 
@@ -19,16 +19,12 @@ define('SHAILAN_DM_FOLDER', 'dropdown-menu-widget');
19
  class shailan_DropdownWidget extends WP_Widget {
20
  /** constructor */
21
  function shailan_DropdownWidget() {
22
- <<<<<<< .mine
23
  $widget_ops = array('classname' => 'shailan-dropdown-menu', 'description' => __( 'Dropdown page/category menu', 'shailan-dropdown-menu' ) );
24
  $this->WP_Widget('dropdown-menu', __('Dropdown Menu', 'shailan-dropdown-menu'), $widget_ops);
25
- =======
26
- $widget_ops = array('classname' => 'shailan-dropdown-menu', 'description' => __( 'Dropdown page/category menu', 'shailan-dropdown-menu' ) );
27
- $this->WP_Widget('dropdown-menu', __('Dropdown Menu'), $widget_ops);
28
- >>>>>>> .r188379
29
  $this->alt_option_name = 'widget_dropdown_menu';
30
 
31
- // if ( is_active_widget(false, false, $this->id_base) ) disabled for the_widget support.
 
32
  add_action( 'wp_head', array(&$this, 'styles') );
33
  }
34
 
3
  Plugin Name: Shailan Dropdown Menu Widget
4
  Plugin URI: http://shailan.com/wordpress/plugins/dropdown-menu
5
  Description: A multi widget to generate drop-down menus from your pages and categories. This widget is best used in <a href="http://shailan.com">Shailan.com</a> themes. You can find more widgets, plugins and themes at <a href="http://shailan.com">shailan.com</a>.
6
+ Version: 1.2.6
7
  Author: Matt Say
8
  Author URI: http://shailan.com
9
  Text Domain: shailan-dropdown-menu
10
  */
11
 
12
+ define('SHAILAN_DM_VERSION','1.2.6');
13
  define('SHAILAN_DM_TITLE', 'Dropdown Menu');
14
  define('SHAILAN_DM_FOLDER', 'dropdown-menu-widget');
15
 
19
  class shailan_DropdownWidget extends WP_Widget {
20
  /** constructor */
21
  function shailan_DropdownWidget() {
 
22
  $widget_ops = array('classname' => 'shailan-dropdown-menu', 'description' => __( 'Dropdown page/category menu', 'shailan-dropdown-menu' ) );
23
  $this->WP_Widget('dropdown-menu', __('Dropdown Menu', 'shailan-dropdown-menu'), $widget_ops);
 
 
 
 
24
  $this->alt_option_name = 'widget_dropdown_menu';
25
 
26
+ // if ( is_active_widget(false, false, $this->id_base) )
27
+ // @shailan: disabled for the_widget support.
28
  add_action( 'wp_head', array(&$this, 'styles') );
29
  }
30