Apply paragraph description class on wp-admin/network.php for consistency.

props Hanni.
fixes #26264.

git-svn-id: https://develop.svn.wordpress.org/trunk@26405 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2013-11-26 13:22:47 +00:00
parent f89db723ee
commit 316a125c4c
1 changed files with 6 additions and 2 deletions

View File

@ -292,14 +292,18 @@ function network_step1( $errors = false ) {
<th scope='row'><?php esc_html_e( 'Network Title' ); ?></th>
<td>
<input name='sitename' type='text' size='45' value='<?php echo esc_attr( $site_name ); ?>' />
<br /><?php _e( 'What would you like to call your network?' ); ?>
<p class="description">
<?php _e( 'What would you like to call your network?' ); ?>
</p>
</td>
</tr>
<tr>
<th scope='row'><?php esc_html_e( 'Admin E-mail Address' ); ?></th>
<td>
<input name='email' type='text' size='45' value='<?php echo esc_attr( $admin_email ); ?>' />
<br /><?php _e( 'Your email address.' ); ?>
<p class="description">
<?php _e( 'Your email address.' ); ?>
</p>
</td>
</tr>
</table>