Remove spurious character. Props hakre. fixes #9428

git-svn-id: http://svn.automattic.com/wordpress/trunk@10853 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-03-31 22:01:51 +00:00
parent abec350e44
commit d428b237b6
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ class WP_Widget_Categories extends WP_Widget {
<p>
<label for="<?php echo $this->get_field_id('title'); ?>">
<?php _e( 'Title:' ); ?>
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" />
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" />
</label>
</p>