Version Description
(9th July 2016) = * Requires PHP 5.4 * Fixed bug with overwriting values with shortcode
Download this release
Release Info
Developer | ResponsiveMenu |
Plugin | Responsive Menu |
Version | 3.0.4 |
Comparing to | |
See all releases |
Code changes from version 3.0.3 to 3.0.4
- readme.txt +5 -1
- responsive-menu.php +1 -1
- src/app/Models/Option.php +5 -1
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://responsive.menu/donate
|
|
4 |
Tags: responsive, menu, responsive menu, mobile menu, wordpress responsive menu, wp responsive menu, tablet menu, mobile, tablet, 3 lines, 3 line, three line, three lines
|
5 |
Requires at least: 3.5.0
|
6 |
Tested up to: 4.5.3
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -146,6 +146,10 @@ To view our whole FAQ, please go to https://responsive.menu/faq/
|
|
146 |
|
147 |
== Changelog ==
|
148 |
|
|
|
|
|
|
|
|
|
149 |
= 3.0.3 (9th July 2016) =
|
150 |
* **Requires PHP 5.4**
|
151 |
* Fixed bug with custom trigger
|
4 |
Tags: responsive, menu, responsive menu, mobile menu, wordpress responsive menu, wp responsive menu, tablet menu, mobile, tablet, 3 lines, 3 line, three line, three lines
|
5 |
Requires at least: 3.5.0
|
6 |
Tested up to: 4.5.3
|
7 |
+
Stable tag: 3.0.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
146 |
|
147 |
== Changelog ==
|
148 |
|
149 |
+
= 3.0.4 (9th July 2016) =
|
150 |
+
* **Requires PHP 5.4**
|
151 |
+
* Fixed bug with overwriting values with shortcode
|
152 |
+
|
153 |
= 3.0.3 (9th July 2016) =
|
154 |
* **Requires PHP 5.4**
|
155 |
* Fixed bug with custom trigger
|
responsive-menu.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Responsive Menu
|
5 |
Plugin URI: https://responsive.menu
|
6 |
Description: Highly Customisable Responsive Menu Plugin for WordPress
|
7 |
-
Version: 3.0.
|
8 |
Author: Responsive Menu
|
9 |
Text Domain: responsive-menu
|
10 |
Author URI: https://responsive.menu
|
4 |
Plugin Name: Responsive Menu
|
5 |
Plugin URI: https://responsive.menu
|
6 |
Description: Highly Customisable Responsive Menu Plugin for WordPress
|
7 |
+
Version: 3.0.4
|
8 |
Author: Responsive Menu
|
9 |
Text Domain: responsive-menu
|
10 |
Author URI: https://responsive.menu
|
src/app/Models/Option.php
CHANGED
@@ -26,6 +26,10 @@ class Option {
|
|
26 |
return $this->value;
|
27 |
}
|
28 |
|
|
|
|
|
|
|
|
|
29 |
public function getFiltered() {
|
30 |
return $this->filter->filter($this->value);
|
31 |
}
|
@@ -37,5 +41,5 @@ class Option {
|
|
37 |
public function __toString() {
|
38 |
return (string) $this->value;
|
39 |
}
|
40 |
-
|
41 |
}
|
26 |
return $this->value;
|
27 |
}
|
28 |
|
29 |
+
public function setValue($value) {
|
30 |
+
$this->value = $value;
|
31 |
+
}
|
32 |
+
|
33 |
public function getFiltered() {
|
34 |
return $this->filter->filter($this->value);
|
35 |
}
|
41 |
public function __toString() {
|
42 |
return (string) $this->value;
|
43 |
}
|
44 |
+
|
45 |
}
|