Version Description
- 06/21/2021
- Fix: check $_GET variables against an array of allowed values
- Fix: use "window.parent" instead of "document.parent" when checking if the page is within a page builder or not
Download this release
Release Info
Developer | diana_burduja |
Plugin | WP Image Zoom |
Version | 1.47.1 |
Comparing to | |
See all releases |
Code changes from version 1.47 to 1.47.1
- image-zoooom.php +2 -2
- includes/admin-side.php +1 -1
- readme.txt +2 -2
image-zoooom.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WP Image Zoom
|
4 |
* Plugin URI: https://wordpress.org/plugins/wp-image-zoooom/
|
5 |
* Description: Add zoom effect over the an image, whether it is an image in a post/page or the featured image of a product in a WooCommerce shop
|
6 |
-
* Version: 1.47
|
7 |
* Author: SilkyPress
|
8 |
* Author URI: https://www.silkypress.com
|
9 |
* License: GPL2
|
@@ -26,7 +26,7 @@ if ( ! class_exists( 'ImageZoooom' ) ) :
|
|
26 |
* @class ImageZoooom
|
27 |
*/
|
28 |
final class ImageZoooom {
|
29 |
-
public $version = '1.47';
|
30 |
public $theme = '';
|
31 |
protected static $_instance = null;
|
32 |
|
3 |
* Plugin Name: WP Image Zoom
|
4 |
* Plugin URI: https://wordpress.org/plugins/wp-image-zoooom/
|
5 |
* Description: Add zoom effect over the an image, whether it is an image in a post/page or the featured image of a product in a WooCommerce shop
|
6 |
+
* Version: 1.47.1
|
7 |
* Author: SilkyPress
|
8 |
* Author URI: https://www.silkypress.com
|
9 |
* License: GPL2
|
26 |
* @class ImageZoooom
|
27 |
*/
|
28 |
final class ImageZoooom {
|
29 |
+
public $version = '1.47.1';
|
30 |
public $theme = '';
|
31 |
protected static $_instance = null;
|
32 |
|
includes/admin-side.php
CHANGED
@@ -109,7 +109,7 @@ class ImageZoooom_Admin {
|
|
109 |
'settings' => __( 'Zoom Settings', 'wp-image-zoooom' ),
|
110 |
);
|
111 |
|
112 |
-
$tab_current = ( isset( $_GET['tab'] ) &&
|
113 |
$options_current = ( 'settings' === $tab_current ) ? 'zoooom_settings' : 'zoooom_general';
|
114 |
|
115 |
// Get the field settings.
|
109 |
'settings' => __( 'Zoom Settings', 'wp-image-zoooom' ),
|
110 |
);
|
111 |
|
112 |
+
$tab_current = ( isset( $_GET['tab'] ) && isset( $tabs[$_GET['tab']] ) ) ? $_GET['tab'] : 'settings';
|
113 |
$options_current = ( 'settings' === $tab_current ) ? 'zoooom_settings' : 'zoooom_general';
|
114 |
|
115 |
// Get the field settings.
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Email: diana@burduja.eu
|
|
5 |
Tags: e-commerce, featured image, hover over image zoom, image, image zoom, image zoom plugin, image magnification, image magnifier, jquery picture zoom, magnifier, magnify image, magnifying glass, mouse over image zoom, panorama, picture zoom, product image, product zoom, product magnification, product magnifier, responsive, woocommerce product zoom, woocommerce zoom, woocommerce magnifying glass, zoom, zoom image, zoom plugin, woocommerce image zoom, woocommerce product image zoom, woocommerce zoom magnifier
|
6 |
Requires at least: 3.0.1
|
7 |
Tested up to: 5.8
|
8 |
-
Stable tag: 1.47
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
Requires PHP: 5.2.4
|
@@ -155,7 +155,7 @@ Alternatively you can upgrade to the Pro version, as there the zoom lens is buil
|
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
-
= 1.47 =
|
159 |
* 06/21/2021
|
160 |
* Fix: check $_GET variables against an array of allowed values
|
161 |
* Fix: use "window.parent" instead of "document.parent" when checking if the page is within a page builder or not
|
5 |
Tags: e-commerce, featured image, hover over image zoom, image, image zoom, image zoom plugin, image magnification, image magnifier, jquery picture zoom, magnifier, magnify image, magnifying glass, mouse over image zoom, panorama, picture zoom, product image, product zoom, product magnification, product magnifier, responsive, woocommerce product zoom, woocommerce zoom, woocommerce magnifying glass, zoom, zoom image, zoom plugin, woocommerce image zoom, woocommerce product image zoom, woocommerce zoom magnifier
|
6 |
Requires at least: 3.0.1
|
7 |
Tested up to: 5.8
|
8 |
+
Stable tag: 1.47.1
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
Requires PHP: 5.2.4
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
+
= 1.47.1 =
|
159 |
* 06/21/2021
|
160 |
* Fix: check $_GET variables against an array of allowed values
|
161 |
* Fix: use "window.parent" instead of "document.parent" when checking if the page is within a page builder or not
|