Changeset 38322
- Timestamp:
- 08/23/2016 12:10:49 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/settings.php
r37959 r38322 310 310 <th scope="row"><label for="fileupload_maxk"><?php _e( 'Max upload file size' ) ?></label></th> 311 311 <td> 312 <?php printf( _x( '%s KB', 'File size in kilobytes' ), '<input name="fileupload_maxk" type="number" min="0" style="width: 100px" id="fileupload_maxk" aria-describedby="fileupload-maxk-desc" value="' . esc_attr( get_site_option( 'fileupload_maxk', 300 ) ) . '" />' ); ?> 312 <?php 313 printf( 314 /* translators: %s: File size in kilobytes */ 315 __( '%s KB' ), 316 '<input name="fileupload_maxk" type="number" min="0" style="width: 100px" id="fileupload_maxk" aria-describedby="fileupload-maxk-desc" value="' . esc_attr( get_site_option( 'fileupload_maxk', 300 ) ) . '" />' 317 ); 318 ?> 313 319 <p class="screen-reader-text" id="fileupload-maxk-desc"> 314 320 <?php _e( 'Size in kilobytes' ) ?>
Note: See TracChangeset
for help on using the changeset viewer.