In a prior installation of WPMU, one was given the option of sorting uploaded files into a neat calendar-based folder logic, in the blogs.dir directory, e.g. blogs.dir/1/files/2006/09/file.jpg or just into a "files" folder. The latter is what I want on my current installation (that doesn't give me that option), so that all uploaded files are just (and always) dropped into e.g. /blogs.dir/1/files/.
I've tried deleting
if ( get_settings('uploads_use_yearmonth_folders')) {
// Generate the yearly and monthly dirs
$time = current_time( 'mysql' );
$y = substr( $time, 0, 4 );
$m = substr( $time, 5, 2 );
$dir = $dir . "/$y/$m";
$url = $url . "/$y/$m";
}
from line 920 in wp-includes/functions.php - but to no avail.
Can anyone help me?