Changeset 25739
- Timestamp:
- 10/09/2013 04:46:31 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r25541 r25739 837 837 // Set the permission constants if not already set. 838 838 if ( ! defined('FS_CHMOD_DIR') ) 839 define('FS_CHMOD_DIR', ( fileperms( ABSPATH ) & 0777 | 075 0) );839 define('FS_CHMOD_DIR', ( fileperms( ABSPATH ) & 0777 | 0755 ) ); 840 840 if ( ! defined('FS_CHMOD_FILE') ) 841 define('FS_CHMOD_FILE', ( fileperms( ABSPATH . 'index.php' ) & 0777 | 064 0) );841 define('FS_CHMOD_FILE', ( fileperms( ABSPATH . 'index.php' ) & 0777 | 0644 ) ); 842 842 843 843 return true;
Note: See TracChangeset
for help on using the changeset viewer.