Minor code cleanup

This commit is contained in:
Scott Walkinshaw
2011-07-11 15:24:00 -06:00
parent e161da8b4d
commit 16583d1d27
3 changed files with 9 additions and 9 deletions

View File

@@ -18,7 +18,7 @@ class roots_vcard extends WP_Widget {
$email = $instance['email'];
?>
<?php echo $before_widget; ?>
<?php if ($title) echo $before_title . $title . $after_title; ?>
<?php if ($title) echo $before_title, $title, $after_title; ?>
<p class="vcard">
<a class="fn org url" href="<?php echo home_url('/'); ?>"><?php bloginfo('name'); ?></a><br>
<span class="adr">
@@ -83,4 +83,4 @@ class roots_vcard extends WP_Widget {
register_widget('roots_vcard');
?>
?>