Version Description
Download this release
Release Info
Developer | diana_burduja |
Plugin | WP Image Zoom |
Version | 1.39.1 |
Comparing to | |
See all releases |
Code changes from version 1.39 to 1.39.1
- image-zoooom.php +2 -2
- includes/admin-side.php +1 -1
- readme.txt +5 -1
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.39
|
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.39';
|
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.39.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.39.1';
|
30 |
public $theme = '';
|
31 |
protected static $_instance = null;
|
32 |
|
includes/admin-side.php
CHANGED
@@ -159,7 +159,7 @@ class ImageZoooom_Admin {
|
|
159 |
if ( ! empty( $_POST ) ) {
|
160 |
check_admin_referer( $options_current );
|
161 |
|
162 |
-
if ( current_user_can( '
|
163 |
|
164 |
$values_post_sanitized = $form->validate( $_POST );
|
165 |
|
159 |
if ( ! empty( $_POST ) ) {
|
160 |
check_admin_referer( $options_current );
|
161 |
|
162 |
+
if ( current_user_can( 'manage_options' ) ) {
|
163 |
|
164 |
$values_post_sanitized = $form->validate( $_POST );
|
165 |
|
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.3
|
8 |
-
Stable tag: 1.39
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
Requires PHP: 5.2.4
|
@@ -152,6 +152,10 @@ Alternatively you can upgrade to the Pro version, as there the zoom lens is buil
|
|
152 |
|
153 |
== Changelog ==
|
154 |
|
|
|
|
|
|
|
|
|
155 |
= 1.39
|
156 |
* 02/09/2019
|
157 |
* Fix: zoom was showing only in customizer if the Lazy Load option from Jetpack is enabled
|
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.3
|
8 |
+
Stable tag: 1.39.1
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
Requires PHP: 5.2.4
|
152 |
|
153 |
== Changelog ==
|
154 |
|
155 |
+
= 1.39.1
|
156 |
+
* 02/11/2019
|
157 |
+
* Fix: allow saving options only if the current user has the "manage_options" capability
|
158 |
+
|
159 |
= 1.39
|
160 |
* 02/09/2019
|
161 |
* Fix: zoom was showing only in customizer if the Lazy Load option from Jetpack is enabled
|