Plugin Directory

Changeset 2607980


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

PHP 5.4 compatibility patch

Location:
also-in-this-series
Files:
3 deleted
5 edited
14 copied

Legend:

Unmodified
Added
Removed
  • also-in-this-series/tags/1.7.6/changelog.txt

    r2528557 r2607980  
     1= 1.7.3 =
     2* Resolved issue with series framing.
     3* Exposed more options to the widget interface.
     4
     5= 1.7.1 =
     6* Significant updates to the codebase to facilitate future updates.
     7* Bulk/Inline Editor now updates correctly.
     8* Theme and Plugin template support.
     9* Plugin correctly flushes rewrite rules on activation to enable series archives.
     10* Other minor tweaks
     11
    112= 1.4.1 =
    213* Added ability to create series in the post editor
  • also-in-this-series/tags/1.7.6/plugin-core.php

    r2597673 r2607980  
    3737        'useframe' => [ 'filter' => FILTER_VALIDATE_BOOLEAN ],
    3838        'framewidth' => [ 'filter' => FILTER_VALIDATE_INT, 'options' =>
    39             [ 'default' => config( 'window-series-listing' ) ]
     39            [ 'min_range' => 1, 'default' => config( 'window-series-listing' ) ]
    4040        ],
    4141        'sortorder' => [ 'filter' => FILTER_VALIDATE_REGEXP, 'options' =>
  • also-in-this-series/tags/1.7.6/plugin.php

    r2597673 r2607980  
    44Plugin URI: https://planetjon.ca/projects/also-in-this-series/
    55Description: Group related posts in a series with a custom Series taxonomy. and a list of all posts in the series in your content.
    6 Version: 1.7.5
     6Version: 1.7.6
    77Requires at least: 4.6
    88Requires PHP: 5.4
  • also-in-this-series/tags/1.7.6/readme.txt

    r2597673 r2607980  
    66Requires PHP: 5.4
    77Tested up to: 5.8.1
    8 Stable tag: trunk
     8Stable tag: 1.7.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757== Changelog ==
    5858
    59 = 1.7.3 =
    60 * Resolved issue with series framing.
    61 * Exposed more options to the widget interface.
    62 
    63 = 1.7.1 =
    64 * Significant updates to the codebase to facilitate future updates.
    65 * Bulk/Inline Editor now updates correctly.
    66 * Theme and Plugin template support.
    67 * Plugin correctly flushes rewrite rules on activation to enable series archives.
    68 * Other minor tweaks
     59= 1.7.6 =
     60* Compatibility patch for PHP 5.4
  • also-in-this-series/tags/1.7.6/views/admin/widget-form.php

    r2529462 r2607980  
    2727            value="<?php echo esc_attr( $framewidth ) ?>"
    2828            placeholder="Leave blank for default setting"
     29            min="1"
    2930        />
    3031    </p>
  • also-in-this-series/trunk/changelog.txt

    r2528557 r2607980  
     1= 1.7.3 =
     2* Resolved issue with series framing.
     3* Exposed more options to the widget interface.
     4
     5= 1.7.1 =
     6* Significant updates to the codebase to facilitate future updates.
     7* Bulk/Inline Editor now updates correctly.
     8* Theme and Plugin template support.
     9* Plugin correctly flushes rewrite rules on activation to enable series archives.
     10* Other minor tweaks
     11
    112= 1.4.1 =
    213* Added ability to create series in the post editor
  • also-in-this-series/trunk/plugin-core.php

    r2597673 r2607980  
    3737        'useframe' => [ 'filter' => FILTER_VALIDATE_BOOLEAN ],
    3838        'framewidth' => [ 'filter' => FILTER_VALIDATE_INT, 'options' =>
    39             [ 'default' => config( 'window-series-listing' ) ]
     39            [ 'min_range' => 1, 'default' => config( 'window-series-listing' ) ]
    4040        ],
    4141        'sortorder' => [ 'filter' => FILTER_VALIDATE_REGEXP, 'options' =>
  • also-in-this-series/trunk/plugin.php

    r2597673 r2607980  
    44Plugin URI: https://planetjon.ca/projects/also-in-this-series/
    55Description: Group related posts in a series with a custom Series taxonomy. and a list of all posts in the series in your content.
    6 Version: 1.7.5
     6Version: 1.7.6
    77Requires at least: 4.6
    88Requires PHP: 5.4
  • also-in-this-series/trunk/readme.txt

    r2597673 r2607980  
    66Requires PHP: 5.4
    77Tested up to: 5.8.1
    8 Stable tag: trunk
     8Stable tag: 1.7.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757== Changelog ==
    5858
    59 = 1.7.3 =
    60 * Resolved issue with series framing.
    61 * Exposed more options to the widget interface.
    62 
    63 = 1.7.1 =
    64 * Significant updates to the codebase to facilitate future updates.
    65 * Bulk/Inline Editor now updates correctly.
    66 * Theme and Plugin template support.
    67 * Plugin correctly flushes rewrite rules on activation to enable series archives.
    68 * Other minor tweaks
     59= 1.7.6 =
     60* Compatibility patch for PHP 5.4
  • also-in-this-series/trunk/views/admin/widget-form.php

    r2529462 r2607980  
    2727            value="<?php echo esc_attr( $framewidth ) ?>"
    2828            placeholder="Leave blank for default setting"
     29            min="1"
    2930        />
    3031    </p>
Note: See TracChangeset for help on using the changeset viewer.