Fast Velocity Minify - Version 2.6.2

Version Description

[2019.03.27] = * fixed a PHP notice on urls with query strings that include arrays on keys or values

Download this release

Release Info

Developer Alignak
Plugin Icon 128x128 Fast Velocity Minify
Version 2.6.2
Comparing to
See all releases

Code changes from version 2.6.1 to 2.6.2

Files changed (3) hide show
  1. fvm.php +1 -1
  2. inc/functions.php +4 -2
  3. readme.txt +4 -1
fvm.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://fastvelocity.com
5
  Description: Improve your speed score on GTmetrix, Pingdom Tools and Google PageSpeed Insights by merging and minifying CSS and JavaScript files into groups, compressing HTML and other speed optimizations.
6
  Author: Raul Peixoto
7
  Author URI: http://fastvelocity.com
8
- Version: 2.6.1
9
  License: GPL2
10
 
11
  ------------------------------------------------------------------------
5
  Description: Improve your speed score on GTmetrix, Pingdom Tools and Google PageSpeed Insights by merging and minifying CSS and JavaScript files into groups, compressing HTML and other speed optimizations.
6
  Author: Raul Peixoto
7
  Author URI: http://fastvelocity.com
8
+ Version: 2.6.2
9
  License: GPL2
10
 
11
  ------------------------------------------------------------------------
inc/functions.php CHANGED
@@ -805,8 +805,10 @@ function fastvelocity_exclude_contents() {
805
  if(isset($_GET['elementor-preview']) && $_GET['post_type'] == $a) { return true; }
806
  if(is_array($_GET)) {
807
  foreach ($_GET as $k=>$v) {
808
- if(stripos($k, 'elementor') !== false || stripos($v, 'elementor') !== false) {
809
- return true;
 
 
810
  }
811
  }
812
  }
805
  if(isset($_GET['elementor-preview']) && $_GET['post_type'] == $a) { return true; }
806
  if(is_array($_GET)) {
807
  foreach ($_GET as $k=>$v) {
808
+ if(is_string($v) && is_string($k)) {
809
+ if(stripos($k, 'elementor') !== false || stripos($v, 'elementor') !== false) {
810
+ return true;
811
+ }
812
  }
813
  }
814
  }
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: Alignak
3
  Tags: PHP Minify, Lighthouse, GTmetrix, Pingdom, Pagespeed, CSS Merging, JS Merging, CSS Minification, JS Minification, Speed Optimization, HTML Minification, Performance, Optimization, Speed, Fast
4
  Requires at least: 4.5
5
- Stable tag: 2.6.1
6
  Tested up to: 5.1.1
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -196,6 +196,9 @@ Please backup your site before updating. Version 3.0 will have a major code rewr
196
 
197
  == Changelog ==
198
 
 
 
 
199
  = 2.6.1 [2019.03.26] =
200
  * fixed compatibility with the latest elementor plugin
201
  * fixed adding duplicate cron jobs + existing duplicate cronjobs cleanup
2
  Contributors: Alignak
3
  Tags: PHP Minify, Lighthouse, GTmetrix, Pingdom, Pagespeed, CSS Merging, JS Merging, CSS Minification, JS Minification, Speed Optimization, HTML Minification, Performance, Optimization, Speed, Fast
4
  Requires at least: 4.5
5
+ Stable tag: 2.6.2
6
  Tested up to: 5.1.1
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
196
 
197
  == Changelog ==
198
 
199
+ = 2.6.2 [2019.03.27] =
200
+ * fixed a PHP notice on urls with query strings that include arrays on keys or values
201
+
202
  = 2.6.1 [2019.03.26] =
203
  * fixed compatibility with the latest elementor plugin
204
  * fixed adding duplicate cron jobs + existing duplicate cronjobs cleanup