Make WordPress Core

Ticket #4151: 4151.thumbnail.creation.patch

File 4151.thumbnail.creation.patch, 493 bytes (added by DD32, 17 years ago)

chmod patch for thumbnail creation

  • wp-admin/admin-functions.php

     
    23172317                                        $error = __( "Thumbnail path invalid" );
    23182318                                }
    23192319                        }
     2320                        if( empty($error) ){
     2321                                // Set correct file permissions
     2322                                $stat = stat( dirname( $thumbpath ));
     2323                                $perms = $stat['mode'] & 0000666;
     2324                                @ chmod( $thumbpath, $perms );
     2325                        }
    23202326
    23212327                }
    23222328        } else {