Skip to content

Commit feaca86

Browse files
committed
Multisite: Improve escaping in network settings.
Merge of [37124] to the 3.8 branch. git-svn-id: https://develop.svn.wordpress.org/branches/3.8@37131 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 725049f commit feaca86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wp-admin/network/settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237
<tr valign="top">
238238
<th scope="row"><label for="first_comment_author"><?php _e( 'First Comment Author' ) ?></label></th>
239239
<td>
240-
<input type="text" size="40" name="first_comment_author" id="first_comment_author" value="<?php echo get_site_option('first_comment_author') ?>" />
240+
<input type="text" size="40" name="first_comment_author" id="first_comment_author" value="<?php echo esc_attr( get_site_option('first_comment_author') ); ?>" />
241241
<p class="description">
242242
<?php _e( 'The author of the first comment on a new site.' ) ?>
243243
</p>

0 commit comments

Comments
 (0)