Fix #643 - Fix PHP notice on search with no results

This commit is contained in:
Ben Word
2013-01-20 15:21:04 -06:00
parent 2ed9738afd
commit 1724452e35
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
### HEAD
* Fix PHP notice on search with no results
* Update to jQuery 1.9.0
### 6.2.0: January 13th, 2013

View File

@@ -1,2 +1,4 @@
<?php get_template_part('templates/page', 'header'); ?>
<?php get_template_part('templates/content', get_post_format()); ?>
<?php if (have_posts()) : ?>
<?php get_template_part('templates/content', get_post_format()); ?>
<?php endif; ?>