Fast Velocity Minify - Version 2.6.3

Version Description

[2019.03.30] = * fixed another minor PHP notice

Download this release

Release Info

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

Code changes from version 2.6.2 to 2.6.3

Files changed (3) hide show
  1. fvm.php +1 -1
  2. inc/functions.php +1 -1
  3. readme.txt +5 -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.2
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.3
9
  License: GPL2
10
 
11
  ------------------------------------------------------------------------
inc/functions.php CHANGED
@@ -802,7 +802,7 @@ function fastvelocity_exclude_contents() {
802
  foreach ($arr as $a) { if(isset($_GET['post_type']) && $_GET['post_type'] == $a) { return true; } }
803
 
804
  # elementor
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)) {
802
  foreach ($arr as $a) { if(isset($_GET['post_type']) && $_GET['post_type'] == $a) { return true; } }
803
 
804
  # elementor
805
+ if(isset($_GET['elementor-preview'])) { return true; }
806
  if(is_array($_GET)) {
807
  foreach ($_GET as $k=>$v) {
808
  if(is_string($v) && is_string($k)) {
readme.txt CHANGED
@@ -2,7 +2,8 @@
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,6 +197,9 @@ Please backup your site before updating. Version 3.0 will have a major code rewr
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
 
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
+ Requires PHP: 5.5
6
+ Stable tag: 2.6.3
7
  Tested up to: 5.1.1
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
197
 
198
  == Changelog ==
199
 
200
+ = 2.6.3 [2019.03.30] =
201
+ * fixed another minor PHP notice
202
+
203
  = 2.6.2 [2019.03.27] =
204
  * fixed a PHP notice on urls with query strings that include arrays on keys or values
205