Changeset 31517 for trunk/src/wp-admin/includes/ms.php
- Timestamp:
- 02/23/2015 02:28:41 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/ms.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ms.php
r31404 r31517 477 477 ?> 478 478 <tr> 479 <th><?php _e( 'Site Upload Space Quota '); ?></th> 480 <td><input type="number" step="1" min="0" style="width: 100px" name="option[blog_upload_space]" value="<?php echo $quota; ?>" /> <?php _e( 'MB (Leave blank for network default)' ); ?></td> 479 <th><label for="blog-upload-space-number"><?php _e( 'Site Upload Space Quota' ); ?></label></th> 480 <td> 481 <input type="number" step="1" min="0" style="width: 100px" name="option[blog_upload_space]" id="blog-upload-space-number" aria-describedby="blog-upload-space-desc" value="<?php echo $quota; ?>" /> 482 <span id="blog-upload-space-desc"><span class="screen-reader-text"><?php _e( 'Size in megabytes' ); ?></span> <?php _e( 'MB (Leave blank for network default)' ); ?></span> 483 </td> 481 484 </tr> 482 485 <?php … … 785 788 <tr> 786 789 <?php /* translators: My sites label */ ?> 787 <th scope="row">< ?php _e( 'Primary Site' ); ?></th>790 <th scope="row"><label for="primary_blog"><?php _e( 'Primary Site' ); ?></label></th> 788 791 <td> 789 792 <?php … … 793 796 $found = false; 794 797 ?> 795 <select name="primary_blog" >798 <select name="primary_blog" id="primary_blog"> 796 799 <?php foreach( (array) $all_blogs as $blog ) { 797 800 if ( $primary_blog == $blog->userblog_id )
Note: See TracChangeset
for help on using the changeset viewer.