git-svn-id: http://svn.automattic.com/wordpress/trunk@2967 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5939e76b0b
commit
4de2c0de08
|
@ -1505,12 +1505,16 @@ function wp_upload_dir() {
|
|||
$dir = 'wp-content/uploads';
|
||||
|
||||
$path = ABSPATH . $dir;
|
||||
|
||||
// Give the new dirs the same perms as wp-content.
|
||||
$stat = stat(ABSPATH . 'wp-content');
|
||||
$dir_perms = $stat['mode'] & 0000777; // Get the permission bits.
|
||||
|
||||
// Make sure we have an uploads dir
|
||||
if ( ! file_exists( $path ) ) {
|
||||
if ( ! mkdir( $path ) )
|
||||
return array('error' => "Unable to create directory $path. Is its parent directory writable by the server?");
|
||||
@ chmod( ABSPATH . $path, 0774 );
|
||||
@ chmod( $path, $dir_perms );
|
||||
}
|
||||
|
||||
// Generate the yearly and monthly dirs
|
||||
|
@ -1524,14 +1528,14 @@ function wp_upload_dir() {
|
|||
if ( ! file_exists( $pathy ) ) {
|
||||
if ( ! mkdir( $pathy ) )
|
||||
return array('error' => "Unable to create directory $pathy. Is $path writable?");
|
||||
@ chmod( $pathy, 0774 );
|
||||
@ chmod( $pathy, $dir_perms );
|
||||
}
|
||||
|
||||
// Make sure we have a monthly dir
|
||||
if ( ! file_exists( $pathym ) ) {
|
||||
if ( ! mkdir( $pathym ) )
|
||||
return array('error' => "Unable to create directory $pathym. Is $pathy writable?");
|
||||
@ chmod( $pathym, 0774 );
|
||||
@ chmod( $pathym, $dir_perms );
|
||||
}
|
||||
|
||||
$uploads = array('path' => $pathym, 'url' => get_option('siteurl') . "/$dir/$y/$m", 'error' => false);
|
||||
|
|
|
@ -110,7 +110,7 @@ while ( file_exists($uploads['path'] . "/$filename") )
|
|||
$file = $uploads['path'] . "/$filename";
|
||||
if ( false === move_uploaded_file($_FILES['image']['tmp_name'], $file) )
|
||||
die('The uploaded file could not be moved to $file.');
|
||||
chmod($file, 0775);
|
||||
chmod($file, 0666); // FIXME: Need to set this according to rw bits on parent dir.
|
||||
|
||||
// Compute the URL
|
||||
$url = $uploads['url'] . "/$filename";
|
||||
|
|
Loading…
Reference in New Issue