Add missing semicolons

This commit is contained in:
Ben Word
2012-10-02 18:34:30 -05:00
parent 7e705f4493
commit bfdd804c73
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@
<?php endif; ?>
<section class="comment">
<?php comment_text() ?>
<?php comment_text(); ?>
</section>
<?php comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth']))); ?>

View File

@@ -16,6 +16,6 @@
<?php wp_head(); ?>
<?php if (have_posts()) : ?>
<link rel="alternate" type="application/rss+xml" title="<?php echo get_bloginfo('name') ?> Feed" href="<?php echo home_url() ?>/feed/">
<link rel="alternate" type="application/rss+xml" title="<?php echo get_bloginfo('name'); ?> Feed" href="<?php echo home_url() ?>/feed/">
<?php endif; ?>
</head>