Ticket #34581: 34581.patch
| File 34581.patch, 740 bytes (added by , 11 years ago) |
|---|
-
wp-admin/options-media.php
105 105 <tr> 106 106 <th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th> 107 107 <td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" /> 108 <p class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></p> 108 <p class="description"><?php 109 printf( 110 /* translators: %s: wp-content/uploads */ 111 __( 'Default is %s' ), 112 '<code>wp-content/uploads</code>' 113 ); 114 ?></p> 109 115 </td> 110 116 </tr> 111 117