Skip to content

Commit

Permalink
Merge branch 'hotfix/1.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmilner committed Jan 16, 2019
2 parents 61092c0 + e5bbe95 commit cbdfd35
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ccbpress-core.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: CCBPress Core
* Plugin URI: https://ccbpress.com/
* Description: Display information from Church Community Builder on your WordPress site.
* Version: 1.3.2
* Version: 1.3.3
* Author: CCBPress <info@ccbpress.com>
* Author URI: https://ccbpress.com/
* Text Domain: ccbpress-core
Expand Down Expand Up @@ -66,7 +66,7 @@ class CCBPress_Core {
* @var string
* @since 1.0.0
*/
public $version = '1.3.2';
public $version = '1.3.3';

/**
* Main CCBPress_Core Instance
Expand Down Expand Up @@ -221,7 +221,7 @@ public static function schedule_cron() {
wp_schedule_event( current_time( 'timestamp' ) + 1800, 'hourly', 'ccbpress_maintenance' );
}

if ( false === wp_next_scheduled( 'ccbpress_import' ) && false === get_option( 'ccbpress_import_in_progress', false ) && CCBPress()->get->is_queue_empty() ) {
if ( false === wp_next_scheduled( 'ccbpress_import' ) && false === get_option( 'ccbpress_import_in_progress', false ) && CCBPress_Import::is_queue_empty() ) {
wp_schedule_single_event( current_time( 'timestamp' ), 'ccbpress_import' );
}

Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: church, ccb, church community builder, chms, gutenberg
Requires at least: 4.3
Tested up to: 5.0
Requires PHP: 5.3
Stable tag: 1.3.2
Stable tag: 1.3.3
License: GPLv2 or later
License URI: http://ww.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -45,6 +45,9 @@ Extend the capabilities of CCBPress with these add-ons:

== Changelog ==

= 1.3.3 =
* Fixed an issue when activating the plugin that caused a fatal error.

= 1.3.2 =
* Fixed an issue where duplicate import jobs could be scheduled.
* Fixed a dependancy issue with the Gutenberg blocks.
Expand Down

0 comments on commit cbdfd35

Please sign in to comment.