Skip to content

Commit 6cc0a1a

Browse files
committed
Release version 1.8.3
* Tweak - Tested for compatibility with WordPress 4.9.2 * Fix - Remove redirect to plugins admin panel when activate the plugin for the first time with WordPress 4.9.2
1 parent 9d5b590 commit 6cc0a1a

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

a3-lazy-load.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
/*
33
Plugin Name: a3 Lazy Load
44
Description: Speed up your site and enhance frontend user's visual experience in PC's, Tablets and mobile with a3 Lazy Load.
5-
Version: 1.8.2
5+
Version: 1.8.3
66
Author: a3rev Software
77
Author URI: https://a3rev.com/
88
Requires at least: 4.0
9-
Tested up to: 4.9.0
9+
Tested up to: 4.9.2
1010
Text Domain: a3-lazy-load
1111
Domain Path: /languages
1212
License: GPLv2 or later
@@ -19,7 +19,7 @@
1919
*/
2020
?>
2121
<?php
22-
define('A3_LAZY_VERSION', '1.8.2');
22+
define('A3_LAZY_VERSION', '1.8.3');
2323
define('A3_LAZY_LOAD_FILE_PATH', dirname(__FILE__));
2424
define('A3_LAZY_LOAD_DIR_NAME', basename(A3_LAZY_LOAD_FILE_PATH));
2525
define('A3_LAZY_LOAD_FOLDER', dirname(plugin_basename(__FILE__)));

admin/a3-lazy-load-admin.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
update_option('a3rev_lazy_load_plugin', 'a3_lazy_load' );
33

44
function a3_lazy_load_activated(){
5-
update_option('a3_lazy_load_version', '1.8.2');
5+
update_option('a3_lazy_load_version', A3_LAZY_VERSION );
66

77
// Set Settings Default from Admin Init
88
global $a3_lazy_load_admin_init;
@@ -21,8 +21,6 @@ function a3_lazy_load_init() {
2121

2222
if ( get_option( 'a3_lazy_load_just_installed' ) ) {
2323
delete_option( 'a3_lazy_load_just_installed' );
24-
wp_redirect( admin_url( 'options-general.php?page=a3-lazy-load', 'relative' ) );
25-
exit;
2624
}
2725

2826
a3_lazy_load_plugin_textdomain();
@@ -65,6 +63,6 @@ function a3_lazy_load_upgrade_plugin() {
6563
update_option('a3_lazy_load_style_version', time() );
6664
}
6765

68-
update_option('a3_lazy_load_version', '1.8.2');
66+
update_option('a3_lazy_load_version', A3_LAZY_VERSION );
6967
}
7068
?>

readme.txt

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: a3rev, a3rev Software, nguyencongtuan
33
Tags: a3 lazy load, Lazy Loading , image lazy load, lazyload
44
Requires at least: 4.5
5-
Tested up to: 4.9.0
6-
Stable tag: 1.8.2
5+
Tested up to: 4.9.2
6+
Stable tag: 1.8.3
77
License: GPLv3
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -136,6 +136,10 @@ Want to add a new language to a3 Lazy Load? Great! You can contribute via [trans
136136

137137
== Changelog ==
138138

139+
= 1.8.3 - 2018/01/19 =
140+
* Tweak - Tested for compatibility with WordPress 4.9.2
141+
* Fix - Remove redirect to plugins admin panel when activate the plugin for the first time with WordPress 4.9.2
142+
139143
= 1.8.2 - 2017/06/02 =
140144
* Tweak - Tested for compatibility with WordPress major version 4.8.0
141145
* Tweak - Add Lazy Load support for new WordPress 4.8.0 Image, Video and Media widgets
@@ -282,6 +286,9 @@ Want to add a new language to a3 Lazy Load? Great! You can contribute via [trans
282286

283287
== Upgrade Notice ==
284288

289+
= 1.8.3 =
290+
Maintenance Update. 1 redirect Bug fix on first activate on site with WordPress v4.9.2
291+
285292
= 1.8.2 =
286293
Maintenance Update. 1 bug fix and 1 code tweak for compatibility with upcoming Major WordPress version 4.8.0
287294

0 commit comments

Comments
 (0)