File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## WP2Static 7.1.6
2
+
3
+ - code quality improvements (thanks @szepeviktor )
4
+
1
5
## WP2Static 7.1.5
2
6
3
7
- fix PHP version check to 7.3>=
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public static function renderDiagnosticsPage() : void {
32
32
$ view ['memoryLimit ' ] = ini_get ( 'memory_limit ' );
33
33
$ view ['coreOptions ' ] = CoreOptions::getAll ();
34
34
$ view ['site_info ' ] = SiteInfo::getAllInfo ();
35
- $ view ['phpOutOfDate ' ] = PHP_VERSION < 7.3 ;
35
+ $ view ['phpOutOfDate ' ] = version_compare ( PHP_VERSION , ' 7.3 ' , ' < ' ) ;
36
36
$ view ['uploadsWritable ' ] = SiteInfo::isUploadsWritable ();
37
37
$ view ['maxExecutionTime ' ] = ini_get ( 'max_execution_time ' );
38
38
$ view ['curlSupported ' ] = SiteInfo::hasCURLSupport ();
Original file line number Diff line number Diff line change 3
3
* Plugin Name: WP2Static
4
4
* Plugin URI: https://wp2static.com
5
5
* Description: Static site generator functionality for WordPress.
6
- * Version: 7.1.5 -dev
6
+ * Version: 7.1.6 -dev
7
7
* Author: WP2Static
8
8
* Author URI: https://wp2static.com
9
9
* Text Domain: wp2static
15
15
die;
16
16
}
17
17
18
- define ( 'WP2STATIC_VERSION ' , '7.1.5 -dev ' );
18
+ define ( 'WP2STATIC_VERSION ' , '7.1.6 -dev ' );
19
19
define ( 'WP2STATIC_PATH ' , plugin_dir_path ( __FILE__ ) );
20
20
21
21
if ( file_exists ( WP2STATIC_PATH . 'vendor/autoload.php ' ) ) {
You can’t perform that action at this time.
0 commit comments