Plugin Directory

Changeset 2708834


Ignore:
Timestamp:
04/12/2022 09:50:49 PM (4 years ago)
Author:
danielmilner
Message:

Update to version 1.4.6 from GitHub

Location:
ccbpress-core
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ccbpress-core/tags/1.4.6/ccbpress-core.php

    r2686923 r2708834  
    44 * Plugin URI: https://churchdataconnect.com/
    55 * Description: Display information from Church Community Builder on your WordPress site.
    6  * Version: 1.4.5
     6 * Version: 1.4.6
    77 * Author: FireTree Design, LLC <info@firetreedesign.com>
    88 * Author URI: https://firetreedesign.com/
     
    6767         * @since 1.0.0
    6868         */
    69         public $version = '1.4.5';
     69        public $version = '1.4.6';
    7070
    7171        /**
  • ccbpress-core/tags/1.4.6/includes/class-ccbpress-connection.php

    r2686881 r2708834  
    355355
    356356        if ( isset( $ccbpress_rate_limits[ $srv ]['limit'] ) && isset( $ccbpress_rate_limits[ $srv ]['remaining'] ) ) {
    357             $limit = $ccbpress_rate_limits[ $srv ]['limit'];
    358             $remaining = $ccbpress_rate_limits[ $srv ]['remaining'];
     357            $limit = intval($ccbpress_rate_limits[ $srv ]['limit']);
     358            $remaining = intval($ccbpress_rate_limits[ $srv ]['remaining']);
    359359            if ($remaining >= ($limit / 2)) {
    360360                return true;
     
    363363       
    364364        if ( isset( $ccbpress_rate_limits[ $srv ]['reset'] ) ) {
    365             $reset = $ccbpress_rate_limits[ $srv ]['reset'];
     365            $reset = intval($ccbpress_rate_limits[ $srv ]['reset']);
    366366            if ( time() >= $reset ) {
    367367                return true;
  • ccbpress-core/tags/1.4.6/readme.txt

    r2686923 r2708834  
    55Tested up to: 5.9
    66Requires PHP: 5.3
    7 Stable tag: 1.4.5
     7Stable tag: 1.4.6
    88License: GPLv2 or later
    99License URI: http://ww.gnu.org/licenses/gpl-2.0.html
     
    4646== Changelog ==
    4747
     48= 1.4.6 =
     49* Fixed a PHP compatibility issue.
     50
    4851= 1.4.5 =
    4952* Fixed an issue when loading the Widgets page in the WordPress Admin.
  • ccbpress-core/trunk/ccbpress-core.php

    r2686923 r2708834  
    44 * Plugin URI: https://churchdataconnect.com/
    55 * Description: Display information from Church Community Builder on your WordPress site.
    6  * Version: 1.4.5
     6 * Version: 1.4.6
    77 * Author: FireTree Design, LLC <info@firetreedesign.com>
    88 * Author URI: https://firetreedesign.com/
     
    6767         * @since 1.0.0
    6868         */
    69         public $version = '1.4.5';
     69        public $version = '1.4.6';
    7070
    7171        /**
  • ccbpress-core/trunk/includes/class-ccbpress-connection.php

    r2686881 r2708834  
    355355
    356356        if ( isset( $ccbpress_rate_limits[ $srv ]['limit'] ) && isset( $ccbpress_rate_limits[ $srv ]['remaining'] ) ) {
    357             $limit = $ccbpress_rate_limits[ $srv ]['limit'];
    358             $remaining = $ccbpress_rate_limits[ $srv ]['remaining'];
     357            $limit = intval($ccbpress_rate_limits[ $srv ]['limit']);
     358            $remaining = intval($ccbpress_rate_limits[ $srv ]['remaining']);
    359359            if ($remaining >= ($limit / 2)) {
    360360                return true;
     
    363363       
    364364        if ( isset( $ccbpress_rate_limits[ $srv ]['reset'] ) ) {
    365             $reset = $ccbpress_rate_limits[ $srv ]['reset'];
     365            $reset = intval($ccbpress_rate_limits[ $srv ]['reset']);
    366366            if ( time() >= $reset ) {
    367367                return true;
  • ccbpress-core/trunk/readme.txt

    r2686923 r2708834  
    55Tested up to: 5.9
    66Requires PHP: 5.3
    7 Stable tag: 1.4.5
     7Stable tag: 1.4.6
    88License: GPLv2 or later
    99License URI: http://ww.gnu.org/licenses/gpl-2.0.html
     
    4646== Changelog ==
    4747
     48= 1.4.6 =
     49* Fixed a PHP compatibility issue.
     50
    4851= 1.4.5 =
    4952* Fixed an issue when loading the Widgets page in the WordPress Admin.
Note: See TracChangeset for help on using the changeset viewer.