Responsive Select Menu - Version 1.5.2

Version Description

  • Resolved WordPress 3.6 Strict Warnings
Download this release

Release Info

Developer sevenspark
Plugin Icon wp plugin Responsive Select Menu
Version 1.5.2
Comparing to
See all releases

Code changes from version 1.5.1 to 1.5.2

Files changed (2) hide show
  1. readme.txt +4 -1
  2. responsive-select-menu.php +6 -6
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bit.ly/DonateResponsiveSelect
4
  Tags: responsive, menu, select, drop down,
5
  Requires at least: 3.3
6
  Tested up to: 3.6
7
- Stable tag: 1.5.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -71,6 +71,9 @@ If your theme creates a menu the standard way with wp_nav_menu, it should work.
71
 
72
  == Changelog ==
73
 
 
 
 
74
  = 1.5.1 =
75
  * Added 'License' to header to avoid installation errors
76
 
4
  Tags: responsive, menu, select, drop down,
5
  Requires at least: 3.3
6
  Tested up to: 3.6
7
+ Stable tag: 1.5.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
71
 
72
  == Changelog ==
73
 
74
+ = 1.5.2 =
75
+ * Resolved WordPress 3.6 Strict Warnings
76
+
77
  = 1.5.1 =
78
  * Added 'License' to header to avoid installation errors
79
 
responsive-select-menu.php CHANGED
@@ -4,14 +4,14 @@
4
  Plugin Name: Responsive Select Menu
5
  Plugin URI: http://wpmegamenu.com/responsive-select-menu
6
  Description: Turn your menu into a select box at small viewport sizes
7
- Version: 1.5.1
8
  Author: Chris Mavricos, SevenSpark
9
  Author URI: http://sevenspark.com
10
  License: GPLv2
11
  Copyright 2011-2013 Chris Mavricos, SevenSpark http://sevenspark.com (email : chris@sevenspark.com)
12
  */
13
 
14
- define( 'RESPONSIVE_SELECT_MENU_VERSION', '1.5.1' );
15
  define( 'RESPONSIVE_SELECT_MENU_SETTINGS', 'responsive-select-menu' );
16
 
17
  require_once( 'sparkoptions/SparkOptions.class.php' ); //SevenSpark Options Panel
@@ -517,17 +517,17 @@ class ResponsiveSelectWalker extends Walker_Nav_Menu{
517
  protected $menuItemOptions;
518
  protected $noUberOps;
519
 
520
- function start_lvl( &$output, $depth ) {
521
  $indent = str_repeat( "\t", $depth );
522
  //$output .= "\n$indent<ul class=\"sub-menu sub-menu-".($depth+1)."\">\n";
523
  }
524
 
525
- function end_lvl(&$output, $depth) {
526
  $indent = str_repeat("\t", $depth);
527
  //$output .= "$indent</ul>\n";
528
  }
529
 
530
- function start_el( &$output, $item, $depth, $args ){
531
 
532
  global $responsiveMenuSelect;
533
  global $wp_query;
@@ -599,7 +599,7 @@ class ResponsiveSelectWalker extends Walker_Nav_Menu{
599
  $output.= "</option>\n";
600
  }
601
 
602
- function end_el(&$output, $item, $depth) {
603
  return;
604
  }
605
 
4
  Plugin Name: Responsive Select Menu
5
  Plugin URI: http://wpmegamenu.com/responsive-select-menu
6
  Description: Turn your menu into a select box at small viewport sizes
7
+ Version: 1.5.2
8
  Author: Chris Mavricos, SevenSpark
9
  Author URI: http://sevenspark.com
10
  License: GPLv2
11
  Copyright 2011-2013 Chris Mavricos, SevenSpark http://sevenspark.com (email : chris@sevenspark.com)
12
  */
13
 
14
+ define( 'RESPONSIVE_SELECT_MENU_VERSION', '1.5.2' );
15
  define( 'RESPONSIVE_SELECT_MENU_SETTINGS', 'responsive-select-menu' );
16
 
17
  require_once( 'sparkoptions/SparkOptions.class.php' ); //SevenSpark Options Panel
517
  protected $menuItemOptions;
518
  protected $noUberOps;
519
 
520
+ function start_lvl( &$output, $depth = 0 , $args = array() ) {
521
  $indent = str_repeat( "\t", $depth );
522
  //$output .= "\n$indent<ul class=\"sub-menu sub-menu-".($depth+1)."\">\n";
523
  }
524
 
525
+ function end_lvl(&$output, $depth = 0 , $args = array() ) {
526
  $indent = str_repeat("\t", $depth);
527
  //$output .= "$indent</ul>\n";
528
  }
529
 
530
+ function start_el( &$output, $item, $depth = 0, $args = array(), $current_object_id = 0 ){
531
 
532
  global $responsiveMenuSelect;
533
  global $wp_query;
599
  $output.= "</option>\n";
600
  }
601
 
602
+ function end_el(&$output, $item, $depth = 0 , $args = array() ) {
603
  return;
604
  }
605