Plugin Directory

Changeset 2481527


Ignore:
Timestamp:
02/25/2021 02:38:55 PM (5 years ago)
Author:
hostry
Message:

Increment version 1.2.5

Location:
hostry-pagespeed-booster/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • hostry-pagespeed-booster/trunk/cdn-minifier.php

    r2175483 r2481527  
    66Author URI: https://hostry.com/
    77License: GPLv2 or later
    8 Version: 1.2.4
     8Version: 1.2.5
    99*/
    1010
  • hostry-pagespeed-booster/trunk/includes/main/CdnMinifierPlugin.php

    r2175479 r2481527  
    342342                curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
    343343                curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
     344                curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    344345                curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
    345346                $response = curl_exec($ch);
     
    347348            } else {
    348349                $ctx = stream_context_create(array(
    349                     'http' =>
    350                         array(
    351                             'timeout' => $timeout
    352                         )
     350                    'http' => array(
     351                        'timeout' => $timeout
     352                    ),
     353                    'ssl'  => array(
     354                        'verify_peer'      => false,
     355                        'verify_peer_name' => false,
     356                    ),
    353357                ));
    354358
  • hostry-pagespeed-booster/trunk/readme.txt

    r2175479 r2481527  
    33Tags: Pagespeed, Minify, Google Search Console, SEO, CDN
    44Requires at least: 4.7
    5 Tested up to: 5.2
     5Tested up to: 5.6
    66Requires PHP: 5.3
    77Stable tag: trunk
     
    9696== Changelog ==
    9797
     98= 1.2.5 =
     99* Compatibility tested with versions of Wordpress 5.6.2
     100* Follow Location allowed for CDN during verification
     101* Minor optimizing check CDN url
     102
    98103= 1.2.4 =
    99104* CSS minification set by default as off
Note: See TracChangeset for help on using the changeset viewer.