Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
cheh committed Apr 12, 2016
2 parents 89371c4 + b72c1bf commit dc4f17b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,7 @@ class Cherry_Plugin_Update extends Cherry_Base_Update {
*/
public function init( $attr = array() ) {

if ( ! defined( 'CHERRY_UPDATE' ) ) {
return;
}

if ( false === CHERRY_UPDATE ) {
if ( defined( 'CHERRY_UPDATE' ) && false === CHERRY_UPDATE ) {
return;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,7 @@ class Cherry_Theme_Update extends Cherry_Base_Update {
*/
public function init( $attr = array() ) {

if ( ! defined( 'CHERRY_UPDATE' ) ) {
return;
}

if ( false === CHERRY_UPDATE ) {
if ( defined( 'CHERRY_UPDATE' ) && false === CHERRY_UPDATE ) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: http://www.cherryframework.com/
Author: Cherry Team
Author URI: http://www.cherryframework.com/
Description: Cherry Framework parent theme based on _s started theme for WordPress with enhanced functionality and extended possibilities.
Version: 4.0.5.2
Version: 4.0.5.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: fixed-layout, fluid-layout, responsive-layout, left-sidebar, right-sidebar, custom-menu, featured-images, full-width-template, post-formats, sticky-post, theme-options, translation-ready
Expand Down

0 comments on commit dc4f17b

Please sign in to comment.