Version Description
[2022.12.13] = * fixed a notice with php cli
Download this release
Release Info
Developer | Alignak |
Plugin | Fast Velocity Minify |
Version | 3.3.5 |
Comparing to | |
See all releases |
Code changes from version 3.3.4 to 3.3.5
- fvm.php +1 -1
- inc/common.php +1 -1
- readme.txt +4 -1
fvm.php
CHANGED
@@ -6,7 +6,7 @@ Description: Improve your speed score on GTmetrix, Pingdom Tools and Google Page
|
|
6 |
Author: Raul Peixoto
|
7 |
Author URI: http://fastvelocity.com
|
8 |
Text Domain: fast-velocity-minify
|
9 |
-
Version: 3.3.
|
10 |
License: GPL2
|
11 |
|
12 |
------------------------------------------------------------------------
|
6 |
Author: Raul Peixoto
|
7 |
Author URI: http://fastvelocity.com
|
8 |
Text Domain: fast-velocity-minify
|
9 |
+
Version: 3.3.5
|
10 |
License: GPL2
|
11 |
|
12 |
------------------------------------------------------------------------
|
inc/common.php
CHANGED
@@ -1717,7 +1717,7 @@ function fvm_can_process_common() {
|
|
1717 |
global $fvm_settings, $fvm_urls;
|
1718 |
|
1719 |
# only GET requests allowed
|
1720 |
-
if ($_SERVER['REQUEST_METHOD'] !== 'GET') {
|
1721 |
return false;
|
1722 |
}
|
1723 |
|
1717 |
global $fvm_settings, $fvm_urls;
|
1718 |
|
1719 |
# only GET requests allowed
|
1720 |
+
if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] !== 'GET') {
|
1721 |
return false;
|
1722 |
}
|
1723 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Alignak
|
|
3 |
Tags: PHP Minify, Lighthouse, GTmetrix, Pingdom, Pagespeed, Merging, Minification, Optimization, Speed, Performance, FVM
|
4 |
Requires at least: 5.0
|
5 |
Requires PHP: 7.0
|
6 |
-
Stable tag: 3.3.
|
7 |
Tested up to: 6.1.3
|
8 |
Text Domain: fast-velocity-minify
|
9 |
License: GPLv3 or later
|
@@ -49,6 +49,9 @@ You need a public directory to store and serve minified cache files. If you need
|
|
49 |
|
50 |
== Changelog ==
|
51 |
|
|
|
|
|
|
|
52 |
= 3.3.3 [2022.12.12] =
|
53 |
* buffer bug fix
|
54 |
|
3 |
Tags: PHP Minify, Lighthouse, GTmetrix, Pingdom, Pagespeed, Merging, Minification, Optimization, Speed, Performance, FVM
|
4 |
Requires at least: 5.0
|
5 |
Requires PHP: 7.0
|
6 |
+
Stable tag: 3.3.5
|
7 |
Tested up to: 6.1.3
|
8 |
Text Domain: fast-velocity-minify
|
9 |
License: GPLv3 or later
|
49 |
|
50 |
== Changelog ==
|
51 |
|
52 |
+
= 3.3.5 [2022.12.13] =
|
53 |
+
* fixed a notice with php cli
|
54 |
+
|
55 |
= 3.3.3 [2022.12.12] =
|
56 |
* buffer bug fix
|
57 |
|