Changeset 3501

Show
Ignore:
Timestamp:
01/30/06 22:03:06 (3 years ago)
Author:
ryan
Message:

Remove execute bit from uploaded files. #2190

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/admin-functions.php

    r3497 r3501  
    17671767    // Set correct file permissions 
    17681768    $stat = stat(dirname($new_file)); 
    1769     $perms = $stat['mode'] & 0000777
     1769    $perms = $stat['mode'] & 0000666
    17701770    @ chmod($new_file, $perms); 
    17711771