Plugin Directory

Changeset 2607986


Ignore:
Timestamp:
10/01/2021 05:52:04 PM (4 years ago)
Author:
jweathe
Message:

PHP 5.4 compatibility patch

Location:
no-bs-image-slider
Files:
2 added
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • no-bs-image-slider/tags/1.7.1/plugin.php

    r2597622 r2607986  
    55Plugin URI: https://planetjon.ca/projects/no-bs-image-slider/
    66Description: For displaying a light-weight image slider
    7 Version: 1.7.0
     7Version: 1.7.1
    88Requires at least: 4.7
    99Tested up to: 5.8.1
     
    1515*/
    1616
    17 namespace planetjon\no_bs_image_slider;
     17namespace planetjon\wordpress\no_bs_image_slider;
    1818
    1919use \WP_Widget, \WP_Post;
     
    2424    $sliderID = 'no-bs-image-slider-' . $id;
    2525    $sliderClass = 'no-bs-image-slider';
    26     $sliderName = $args['name'] ?? '';
    27     $sliderDescription = $args['description'] ?? '';
     26    $sliderName = $args['name'] ?: '';
     27    $sliderDescription = $args['description'] ?: '';
    2828    $slideCount = count( $slides );
    2929    $showCounter = filter_var( $args['showCounter'], FILTER_VALIDATE_BOOLEAN );
  • no-bs-image-slider/tags/1.7.1/readme.txt

    r2597643 r2607986  
    66Tested up to: 5.8.1
    77Requires PHP: 5.4
    8 Stable tag: trunk
    9 License: GPLv2 or later
     8Stable tag: 1.7.1
     9License: GPL2
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1111
     
    7474== Changelog ==
    7575
     76+ 1.7.1 =
     77* PHP 5.4 compatibility patch
     78
    7679= 1.7.0 =
    7780* Images loaded eagerly be default.
    7881* Image lazy loading parameter.
    79 
    80 = 1.6.1 =
    81 Hotfix
    82 * CSS loading resolved
    83 * Widget show counter checkbox is correctly set
    84 
    85 = 1.6 =
    86 This release brings in some sorely desired features.
    87 * Support for captions.
    88 * Support for slide numbering.
    89 * Aria attributes for better accessibility.
    90 * Custom hooks for filtering slides and injecting additional CSS.
    91 * Resolves issue with first-time slider selection in widgets when only one slider has been created.
  • no-bs-image-slider/trunk/plugin.php

    r2597622 r2607986  
    55Plugin URI: https://planetjon.ca/projects/no-bs-image-slider/
    66Description: For displaying a light-weight image slider
    7 Version: 1.7.0
     7Version: 1.7.1
    88Requires at least: 4.7
    99Tested up to: 5.8.1
     
    1515*/
    1616
    17 namespace planetjon\no_bs_image_slider;
     17namespace planetjon\wordpress\no_bs_image_slider;
    1818
    1919use \WP_Widget, \WP_Post;
     
    2424    $sliderID = 'no-bs-image-slider-' . $id;
    2525    $sliderClass = 'no-bs-image-slider';
    26     $sliderName = $args['name'] ?? '';
    27     $sliderDescription = $args['description'] ?? '';
     26    $sliderName = $args['name'] ?: '';
     27    $sliderDescription = $args['description'] ?: '';
    2828    $slideCount = count( $slides );
    2929    $showCounter = filter_var( $args['showCounter'], FILTER_VALIDATE_BOOLEAN );
  • no-bs-image-slider/trunk/readme.txt

    r2597643 r2607986  
    66Tested up to: 5.8.1
    77Requires PHP: 5.4
    8 Stable tag: trunk
    9 License: GPLv2 or later
     8Stable tag: 1.7.1
     9License: GPL2
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1111
     
    7474== Changelog ==
    7575
     76+ 1.7.1 =
     77* PHP 5.4 compatibility patch
     78
    7679= 1.7.0 =
    7780* Images loaded eagerly be default.
    7881* Image lazy loading parameter.
    79 
    80 = 1.6.1 =
    81 Hotfix
    82 * CSS loading resolved
    83 * Widget show counter checkbox is correctly set
    84 
    85 = 1.6 =
    86 This release brings in some sorely desired features.
    87 * Support for captions.
    88 * Support for slide numbering.
    89 * Aria attributes for better accessibility.
    90 * Custom hooks for filtering slides and injecting additional CSS.
    91 * Resolves issue with first-time slider selection in widgets when only one slider has been created.
Note: See TracChangeset for help on using the changeset viewer.