Version Description
- Fixed PHP Warning: Undefined variable
Download this release
Release Info
Developer | mej |
Plugin | Widget Options |
Version | 3.8.3 |
Comparing to | |
See all releases |
Code changes from version 3.8.2 to 3.8.3
- includes/widgets/option-tabs/settings.php +4 -4
- plugin.php +2 -2
- readme.txt +5 -1
includes/widgets/option-tabs/settings.php
CHANGED
@@ -260,7 +260,7 @@ if( !function_exists( 'widgetopts_tabcontent_settings' ) ):
|
|
260 |
<?php foreach( $animation_array as $group => $anims ){ ?>
|
261 |
<optgroup label="<?php _e( $group, 'widget-options' );?>">
|
262 |
<?php foreach( $anims as $anim => $aname ){ ?>
|
263 |
-
<option value="<?php echo $aname;?>"
|
264 |
<?php } ?>
|
265 |
</optgroup>
|
266 |
<?php } ?>
|
@@ -272,9 +272,9 @@ if( !function_exists( 'widgetopts_tabcontent_settings' ) ):
|
|
272 |
<label for="opts-class-event-<?php echo $args['id'];?>"><?php _e( 'Animation Event', 'widget-options' );?></label>
|
273 |
<br />
|
274 |
<select class="widefat" readonly>
|
275 |
-
<option value="enters"
|
276 |
-
<option value="onScreen"
|
277 |
-
<option value="pageLoad"
|
278 |
</select>
|
279 |
<small><em><?php _e( 'The event that triggers the animation', 'widget-options' );?></em></small>
|
280 |
</p>
|
260 |
<?php foreach( $animation_array as $group => $anims ){ ?>
|
261 |
<optgroup label="<?php _e( $group, 'widget-options' );?>">
|
262 |
<?php foreach( $anims as $anim => $aname ){ ?>
|
263 |
+
<option value="<?php echo $aname;?>"><?php _e( $aname, 'widget-options' )?></option>
|
264 |
<?php } ?>
|
265 |
</optgroup>
|
266 |
<?php } ?>
|
272 |
<label for="opts-class-event-<?php echo $args['id'];?>"><?php _e( 'Animation Event', 'widget-options' );?></label>
|
273 |
<br />
|
274 |
<select class="widefat" readonly>
|
275 |
+
<option value="enters"><?php _e( 'Element Enters Screen', 'widget-options' );?></option>
|
276 |
+
<option value="onScreen"><?php _e( 'Element In Screen', 'widget-options' );?></option>
|
277 |
+
<option value="pageLoad"><?php _e( 'Page Load', 'widget-options' );?></option>
|
278 |
</select>
|
279 |
<small><em><?php _e( 'The event that triggers the animation', 'widget-options' );?></em></small>
|
280 |
</p>
|
plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Widget Options
|
4 |
* Plugin URI: https://widget-options.com/
|
5 |
* Description: Additional Widget options for better widget control. Get <strong><a href="http://widget-options.com/" target="_blank" >Extended Widget Options for WordPress</a></strong> for complete widget controls. Thanks!
|
6 |
-
* Version: 3.8.
|
7 |
* Author: Widget Options Team
|
8 |
* Author URI: https://widget-options.com/
|
9 |
* Text Domain: widget-options
|
@@ -85,7 +85,7 @@ final class WP_Widget_Options {
|
|
85 |
|
86 |
// Plugin version.
|
87 |
if ( ! defined( 'WIDGETOPTS_VERSION' ) ) {
|
88 |
-
define( 'WIDGETOPTS_VERSION', '3.8.
|
89 |
}
|
90 |
|
91 |
// Plugin Folder Path.
|
3 |
* Plugin Name: Widget Options
|
4 |
* Plugin URI: https://widget-options.com/
|
5 |
* Description: Additional Widget options for better widget control. Get <strong><a href="http://widget-options.com/" target="_blank" >Extended Widget Options for WordPress</a></strong> for complete widget controls. Thanks!
|
6 |
+
* Version: 3.8.3
|
7 |
* Author: Widget Options Team
|
8 |
* Author URI: https://widget-options.com/
|
9 |
* Text Domain: widget-options
|
85 |
|
86 |
// Plugin version.
|
87 |
if ( ! defined( 'WIDGETOPTS_VERSION' ) ) {
|
88 |
+
define( 'WIDGETOPTS_VERSION', '3.8.3' );
|
89 |
}
|
90 |
|
91 |
// Plugin Folder Path.
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: widgets, restrict widgets, display widgets, widget logic, hide widgets, hi
|
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 3.8.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -154,6 +154,10 @@ Widget Options is a featured pack fully lightweight plugin. Using Query Monitor
|
|
154 |
|
155 |
== Changelog ==
|
156 |
|
|
|
|
|
|
|
|
|
157 |
= 3.8.2 =
|
158 |
|
159 |
* Fixed versioning issue
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 3.8.3
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
154 |
|
155 |
== Changelog ==
|
156 |
|
157 |
+
= 3.8.3 =
|
158 |
+
|
159 |
+
* Fixed PHP Warning: Undefined variable
|
160 |
+
|
161 |
= 3.8.2 =
|
162 |
|
163 |
* Fixed versioning issue
|