Skip to content

Commit

Permalink
Release 2.15.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikola Miljković committed Oct 9, 2018
2 parents 2270c5f + 31b200c commit 858bfd5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
21 changes: 12 additions & 9 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Sermon Manager #
Contributors: wpforchurch, nikolam
Donate link: http://wpforchurch.com/
Tags: church, sermon, sermons, preaching, podcasting, manage, managing, podcasts, itunes
Requires at least: 4.7.0
Tested up to: 4.9
Requires PHP: 5.3
Stable tag: 2.15.4
License: GPLv2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Contributors: wpforchurch, nikolam
Donate link: http://wpforchurch.com/
Tags: church, sermon, sermons, preaching, podcasting, manage, managing, podcasts, itunes
Requires at least: 4.7.0
Tested up to: 4.9
Requires PHP: 5.3
Stable tag: 2.15.5
License: GPLv2
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Add audio and video sermons, manage speakers, series, and more to your church website.

Expand Down Expand Up @@ -103,6 +103,9 @@ Visit the [plugin homepage](https://wpforchurch.com/wordpress-plugins/sermon-man
2. Sermon Files

## Changelog ##
### 2.15.5 ###
* Change: Disable check for PHP output buffering

### 2.15.4 ###
* Fix: Output Buffering detected as disabled when set to 0

Expand Down
6 changes: 3 additions & 3 deletions sermons.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Sermon Manager for WordPress
* Plugin URI: https://www.wpforchurch.com/products/sermon-manager-for-wordpress/
* Description: Add audio and video sermons, manage speakers, series, and more.
* Version: 2.15.4
* Version: 2.15.5
* Author: WP for Church
* Author URI: https://www.wpforchurch.com/
* Requires at least: 4.5
Expand Down Expand Up @@ -71,8 +71,8 @@ public function __construct() {
define( 'SM_URL', plugin_dir_url( __FILE__ ) );
define( 'SM_VERSION', preg_match( '/^.*Version: (.*)$/m', file_get_contents( __FILE__ ), $version ) ? trim( $version[1] ) : 'N/A' );

// Easy way to get if output buffering is enabled.
define( 'SM_OB_ENABLED', '' !== ini_get( 'output_buffering' ) );
// Easy way to get if output buffering is enabled. @todo - fix it, causes issues to many users.
define( 'SM_OB_ENABLED', true );

do_action( 'sm_before_plugin_load' );

Expand Down

0 comments on commit 858bfd5

Please sign in to comment.