Changeset 2708834
- Timestamp:
- 04/12/2022 09:50:49 PM (4 years ago)
- Location:
- ccbpress-core
- Files:
-
- 6 edited
- 1 copied
-
tags/1.4.6 (copied) (copied from ccbpress-core/trunk)
-
tags/1.4.6/ccbpress-core.php (modified) (2 diffs)
-
tags/1.4.6/includes/class-ccbpress-connection.php (modified) (2 diffs)
-
tags/1.4.6/readme.txt (modified) (2 diffs)
-
trunk/ccbpress-core.php (modified) (2 diffs)
-
trunk/includes/class-ccbpress-connection.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ccbpress-core/tags/1.4.6/ccbpress-core.php
r2686923 r2708834 4 4 * Plugin URI: https://churchdataconnect.com/ 5 5 * Description: Display information from Church Community Builder on your WordPress site. 6 * Version: 1.4. 56 * Version: 1.4.6 7 7 * Author: FireTree Design, LLC <info@firetreedesign.com> 8 8 * Author URI: https://firetreedesign.com/ … … 67 67 * @since 1.0.0 68 68 */ 69 public $version = '1.4. 5';69 public $version = '1.4.6'; 70 70 71 71 /** -
ccbpress-core/tags/1.4.6/includes/class-ccbpress-connection.php
r2686881 r2708834 355 355 356 356 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']); 359 359 if ($remaining >= ($limit / 2)) { 360 360 return true; … … 363 363 364 364 if ( isset( $ccbpress_rate_limits[ $srv ]['reset'] ) ) { 365 $reset = $ccbpress_rate_limits[ $srv ]['reset'];365 $reset = intval($ccbpress_rate_limits[ $srv ]['reset']); 366 366 if ( time() >= $reset ) { 367 367 return true; -
ccbpress-core/tags/1.4.6/readme.txt
r2686923 r2708834 5 5 Tested up to: 5.9 6 6 Requires PHP: 5.3 7 Stable tag: 1.4. 57 Stable tag: 1.4.6 8 8 License: GPLv2 or later 9 9 License URI: http://ww.gnu.org/licenses/gpl-2.0.html … … 46 46 == Changelog == 47 47 48 = 1.4.6 = 49 * Fixed a PHP compatibility issue. 50 48 51 = 1.4.5 = 49 52 * Fixed an issue when loading the Widgets page in the WordPress Admin. -
ccbpress-core/trunk/ccbpress-core.php
r2686923 r2708834 4 4 * Plugin URI: https://churchdataconnect.com/ 5 5 * Description: Display information from Church Community Builder on your WordPress site. 6 * Version: 1.4. 56 * Version: 1.4.6 7 7 * Author: FireTree Design, LLC <info@firetreedesign.com> 8 8 * Author URI: https://firetreedesign.com/ … … 67 67 * @since 1.0.0 68 68 */ 69 public $version = '1.4. 5';69 public $version = '1.4.6'; 70 70 71 71 /** -
ccbpress-core/trunk/includes/class-ccbpress-connection.php
r2686881 r2708834 355 355 356 356 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']); 359 359 if ($remaining >= ($limit / 2)) { 360 360 return true; … … 363 363 364 364 if ( isset( $ccbpress_rate_limits[ $srv ]['reset'] ) ) { 365 $reset = $ccbpress_rate_limits[ $srv ]['reset'];365 $reset = intval($ccbpress_rate_limits[ $srv ]['reset']); 366 366 if ( time() >= $reset ) { 367 367 return true; -
ccbpress-core/trunk/readme.txt
r2686923 r2708834 5 5 Tested up to: 5.9 6 6 Requires PHP: 5.3 7 Stable tag: 1.4. 57 Stable tag: 1.4.6 8 8 License: GPLv2 or later 9 9 License URI: http://ww.gnu.org/licenses/gpl-2.0.html … … 46 46 == Changelog == 47 47 48 = 1.4.6 = 49 * Fixed a PHP compatibility issue. 50 48 51 = 1.4.5 = 49 52 * Fixed an issue when loading the Widgets page in the WordPress Admin.
Note: See TracChangeset
for help on using the changeset viewer.