Changeset 51075
- Timestamp:
- 06/05/2021 01:56:49 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-media.php
r47874 r51075 19 19 $media_options_help = '<p>' . __( 'You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.' ) . '</p>'; 20 20 21 if ( ! is_multisite() && ( get_option( 'upload_url_path' ) || ( get_option( 'upload_path' ) != 'wp-content/uploads' && get_option( 'upload_path' ) ) ) ) { 21 if ( ! is_multisite() 22 && ( get_option( 'upload_url_path' ) 23 || get_option( 'upload_path' ) && 'wp-content/uploads' !== get_option( 'upload_path' ) ) 24 ) { 22 25 $media_options_help .= '<p>' . __( 'Uploading Files allows you to choose the folder and path for storing your uploaded files.' ) . '</p>'; 23 26 } … … 113 116 * they can be edited, otherwise they're locked. 114 117 */ 115 if ( get_option( 'upload_url_path' ) || ( get_option( 'upload_path' ) != 'wp-content/uploads' && get_option( 'upload_path' ) ) ) : 118 if ( get_option( 'upload_url_path' ) 119 || get_option( 'upload_path' ) && 'wp-content/uploads' !== get_option( 'upload_path' ) ) : 116 120 ?> 117 121 <tr>
Note: See TracChangeset
for help on using the changeset viewer.