fix runaway strong tags

This commit is contained in:
John Bintz 2009-10-23 07:24:06 -04:00
parent 37df3e0db4
commit aef3250519
1 changed files with 2 additions and 2 deletions

View File

@ -285,7 +285,7 @@ class WidgetComicPressGraphicalStorylineNavigation extends WP_Widget {
<input id="<?php echo $this->get_field_id($field); ?>" <input id="<?php echo $this->get_field_id($field); ?>"
name="<?php echo $this->get_field_name($field); ?>" name="<?php echo $this->get_field_name($field); ?>"
type="checkbox" class="comicpress-field" value="yes"<?php if ($instance[$field] == "on") { echo ' checked="checked"'; } ?> /> type="checkbox" class="comicpress-field" value="yes"<?php if ($instance[$field] == "on") { echo ' checked="checked"'; } ?> />
<strong><?php echo $label; ?><strong> <strong><?php echo $label; ?></strong>
</label> </label>
<div class="comicpress-field"> <div class="comicpress-field">
@ -316,7 +316,7 @@ class WidgetComicPressGraphicalStorylineNavigation extends WP_Widget {
<input id="<?php echo $this->get_field_id('nextgohome'); ?>" <input id="<?php echo $this->get_field_id('nextgohome'); ?>"
name="<?php echo $this->get_field_name('nextgohome'); ?>" name="<?php echo $this->get_field_name('nextgohome'); ?>"
type="checkbox" class="comicpress-field" value="yes"<?php if ($instance['nextgohome'] == "on") { echo ' checked="checked"'; } ?> /> type="checkbox" class="comicpress-field" value="yes"<?php if ($instance['nextgohome'] == "on") { echo ' checked="checked"'; } ?> />
<strong><?php _e('...go Home instead of Last', 'comicpress'); ?><strong> <strong><?php _e('...go Home instead of Last', 'comicpress'); ?></strong>
</label> </label>
</div> </div>
<?php break; <?php break;