Ticket #37496: 37496.patch
| File 37496.patch, 1.1 KB (added by , 10 years ago) |
|---|
-
wp-admin/network/settings.php
309 309 <tr> 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' ) ?> 315 321 </p>