Skip to content

Commit

Permalink
fixes undefined index on line 98 in header.php
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Jan 12, 2015
1 parent 5208320 commit 20d42b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion header.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
<?php endif; ?>

<hgroup class="siteinfo">
<?php if ($options['alth1'] == true) { ?>
<?php if ( isset( $options['alth1'] ) && $options['alth1'] == true) { ?>
<h2 class="alt"><a href="<?php echo esc_url( home_url() ) ?>" title="<?php bloginfo('title'); ?>"><?php bloginfo('title'); ?></a></h2>
<h3><?php bloginfo('description'); ?></h3>
<?php } else { ?>
Expand Down

0 comments on commit 20d42b0

Please sign in to comment.