Skip to content

Commit

Permalink
remove unnecessary comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Davis committed Oct 15, 2014
1 parent b9ebebb commit 5ab860c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions single.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() ) :
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
Expand All @@ -29,4 +29,4 @@
</div><!-- #primary -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>
<?php get_footer(); ?>

0 comments on commit 5ab860c

Please sign in to comment.