Ticket #6762: upload_no_subdirs.patch
| File upload_no_subdirs.patch, 0.8 kB (added by simonwheatley, 6 months ago) |
|---|
-
site/wp-includes/functions.php
old new 1076 1076 } 1077 1077 1078 1078 // Returns an array containing the current upload directory's path and url, or an error message. 1079 function wp_upload_dir( $time = NULL ) {1079 function wp_upload_dir( $time = NULL, $date_subdirs = true ) { 1080 1080 $siteurl = get_option( 'siteurl' ); 1081 1081 $upload_path = get_option( 'upload_path' ); 1082 1082 if ( trim($upload_path) === '' ) … … 1096 1096 } 1097 1097 1098 1098 $subdir = ''; 1099 if ( get_option( 'uploads_use_yearmonth_folders' ) ) {1099 if ( get_option( 'uploads_use_yearmonth_folders' ) && $date_subdirs ) { 1100 1100 // Generate the yearly and monthly dirs 1101 1101 if ( !$time ) 1102 1102 $time = current_time( 'mysql' );
