Plugin Directory

Changeset 2652809


Ignore:
Timestamp:
01/04/2022 11:00:43 PM (4 years ago)
Author:
optipic
Message:

v1.27.2

Location:
optipic
Files:
30 added
4 edited

Legend:

Unmodified
Added
Removed
  • optipic/trunk/includes/functions.php

    r2652791 r2652809  
    22
    33function optipic_version() {
    4     return '1.27.1';
     4    return '1.27.2';
    55}
    66
  • optipic/trunk/includes/settings.php

    r2652791 r2652809  
    1111        <?php
    1212        // set default 'domains'
    13         if(empty($optipic_options['domains'])) {
     13        if (empty($optipic_options['domains'])) {
    1414            $homeUrlParse = wp_parse_url(home_url());
    1515            $homeHost = (empty($homeUrlParse['port']))? $homeUrlParse['host']: $homeUrlParse['host'].':'.$homeUrlParse['port'];
     
    1717        }
    1818        // set default 'srcset attrs'
    19         if(empty($optipic_options['srcset_attrs'])) {
     19        if (empty($optipic_options['srcset_attrs'])) {
    2020            $optipic_options['srcset_attrs'] = implode("\n", array('srcset', 'data-srcset'));
     21        }
     22        if (empty($optipic_options['whitelist_img_urls'])) {
     23            $optipic_options['whitelist_img_urls'] = '';
     24        }
     25        if (empty($optipic_options['cdn_domain'])) {
     26            $optipic_options['cdn_domain'] = '';
    2127        }
    2228        ?>
  • optipic/trunk/optipic.php

    r2652791 r2652809  
    44Plugin URI:  https://optipic.io/en/webp/wordpress/
    55Description:  OptiPic.io - image optimization via smart CDN. The module automates the process of optimizing and compressing all images on the site according to the recommendations of Google PageSpeed Insights.
    6 Version:  1.27.1
     6Version:  1.27.2
    77Author:  OptiPic.io
    88Author URI:  https://optipic.io/en/
  • optipic/trunk/readme.txt

    r2652791 r2652809  
    44Requires at least: 4.0
    55Tested up to: 5.8.2
    6 Stable tag: 1.27.1
     6Stable tag: 1.27.2
    77License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    88
     
    9696= 1.27.1 =
    9797* Fixed php notices
     98
     99= 1.27.2 =
     100* Fixed php notices
Note: See TracChangeset for help on using the changeset viewer.