WP Mobile Menu - Version 2.8.2.1

Version Description

  • Fix! - Change code that only worked with PHP 7.4
Download this release

Release Info

Developer takanakui
Plugin Icon 128x128 WP Mobile Menu
Version 2.8.2.1
Comparing to
See all releases

Code changes from version 2.8.2 to 2.8.2.1

mobmenu.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Plugin Name: Mobile Menu
5
  * Description: An easy to use WordPress responsive mobile menu. Keep your mobile visitors engaged.
6
- * Version: 2.8.2
7
  * Plugin URI: https://www.wpmobilemenu.com/
8
  * Author: Rui Guerreiro
9
  * Author URI: https://www.jedipress.com/
@@ -16,7 +16,7 @@
16
  if ( !defined( 'ABSPATH' ) ) {
17
  die;
18
  }
19
- define( 'WP_MOBILE_MENU_VERSION', '2.8.2' );
20
  define( 'WP_MOBILE_MENU_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
21
  define( 'WP_MOBILE_MENU_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
22
  if ( !class_exists( 'WP_Mobile_Menu' ) ) {
3
  /**
4
  * Plugin Name: Mobile Menu
5
  * Description: An easy to use WordPress responsive mobile menu. Keep your mobile visitors engaged.
6
+ * Version: 2.8.2.1
7
  * Plugin URI: https://www.wpmobilemenu.com/
8
  * Author: Rui Guerreiro
9
  * Author URI: https://www.jedipress.com/
16
  if ( !defined( 'ABSPATH' ) ) {
17
  die;
18
  }
19
+ define( 'WP_MOBILE_MENU_VERSION', '2.8.2.1' );
20
  define( 'WP_MOBILE_MENU_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
21
  define( 'WP_MOBILE_MENU_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
22
  if ( !class_exists( 'WP_Mobile_Menu' ) ) {
options-framework/lib/class-admin-page.php CHANGED
@@ -73,7 +73,9 @@ class TitanFrameworkAdminPage
73
 
74
  public function createAdminPanel( $settings )
75
  {
76
- $settings['parent'] = $this->settings['id'] ?? null;
 
 
77
  return $this->owner->createAdminPanel( $settings );
78
  }
79
 
73
 
74
  public function createAdminPanel( $settings )
75
  {
76
+ if ( !isset( $this->settings['id'] ) ) {
77
+ $settings['parent'] = null;
78
+ }
79
  return $this->owner->createAdminPanel( $settings );
80
  }
81
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ link: http://profiles.wordpress.org/takanakui
4
  Tags: mobile, navigation, responsive, menu, responsive menu, mobile menu, tablet menu, hamburger menu, hamburger, wordpress responsive menu, wordpress mobile menu, canvas menu
5
  Requires at least: 4.4
6
  Tested up to: 5.7
7
- Stable tag: 2.8.2
8
  Requires PHP: 5.6
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -133,6 +133,9 @@ Not available at the moment
133
  == Changelog ==
134
 
135
 
 
 
 
136
  = 2.8.2 =
137
  * Fix! - Remove metabox upgrade
138
  * New! - New Settings Design/UX
4
  Tags: mobile, navigation, responsive, menu, responsive menu, mobile menu, tablet menu, hamburger menu, hamburger, wordpress responsive menu, wordpress mobile menu, canvas menu
5
  Requires at least: 4.4
6
  Tested up to: 5.7
7
+ Stable tag: 2.8.2.1
8
  Requires PHP: 5.6
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
133
  == Changelog ==
134
 
135
 
136
+ = 2.8.2.1 =
137
+ * Fix! - Change code that only worked with PHP 7.4
138
+
139
  = 2.8.2 =
140
  * Fix! - Remove metabox upgrade
141
  * New! - New Settings Design/UX