Version Description
[2019.03.31] = * fixed subdirectories permissions
Download this release
Release Info
Developer | Alignak |
Plugin | Fast Velocity Minify |
Version | 2.6.4 |
Comparing to | |
See all releases |
Code changes from version 2.6.3 to 2.6.4
- fvm.php +1 -1
- inc/functions-cache.php +2 -2
- 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.
|
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.4
|
9 |
License: GPL2
|
10 |
|
11 |
------------------------------------------------------------------------
|
inc/functions-cache.php
CHANGED
@@ -72,8 +72,8 @@ $cachedirurl = $cachebaseurl.'/out';
|
|
72 |
|
73 |
# get permissions from uploads directory
|
74 |
$dir_perms = 0777;
|
75 |
-
if(is_dir($uploadsdir
|
76 |
-
if ($stat = @stat($uploadsdir
|
77 |
}
|
78 |
|
79 |
# mkdir and check if umask requires chmod
|
72 |
|
73 |
# get permissions from uploads directory
|
74 |
$dir_perms = 0777;
|
75 |
+
if(is_dir($uploadsdir) && function_exists('stat') && fvm_function_available('stat')) {
|
76 |
+
if ($stat = @stat($uploadsdir)) { $dir_perms = $stat['mode'] & 0007777; }
|
77 |
}
|
78 |
|
79 |
# mkdir and check if umask requires chmod
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ 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.
|
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,6 +197,9 @@ Please backup your site before updating. Version 3.0 will have a major code rewr
|
|
197 |
|
198 |
== Changelog ==
|
199 |
|
|
|
|
|
|
|
200 |
= 2.6.3 [2019.03.30] =
|
201 |
* fixed another minor PHP notice
|
202 |
|
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.4
|
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.4 [2019.03.31] =
|
201 |
+
* fixed subdirectories permissions
|
202 |
+
|
203 |
= 2.6.3 [2019.03.30] =
|
204 |
* fixed another minor PHP notice
|
205 |
|