Skip to content

Commit

Permalink
FIX: issue #118
Browse files Browse the repository at this point in the history
  • Loading branch information
behaart committed Nov 10, 2016
1 parent 4ddf95c commit cc64dab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion modules/cherry-utility/inc/cherry-meta-data-utilit.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public function get_terms( $args = array(), $id = 0 ) {
'delimiter' => ' ',
'before' => '<div class="post-terms">',
'after' => '</div>',
'class' => 'post-term',
'echo' => false,
);
$args = wp_parse_args( $args, $default_args );
Expand Down
4 changes: 2 additions & 2 deletions modules/cherry-utility/inc/cherry-satellite-utilit.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ public function get_thumbnail_size_array( $size ) {
*/
public function output_method( $content = '', $echo = false ) {
if ( ! filter_var( $echo, FILTER_VALIDATE_BOOLEAN ) ) {
return wp_kses_post( $content );
return $content;
} else {
echo wp_kses_post( $content );
echo $content;
}
}

Expand Down

0 comments on commit cc64dab

Please sign in to comment.