Changeset 33883 for branches/4.3
- Timestamp:
- 09/03/2015 04:05:45 AM (9 years ago)
- Location:
- branches/4.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3
-
branches/4.3/src/wp-admin/includes/class-wp-filesystem-ssh2.php
r32726 r33883 384 384 */ 385 385 public function is_writable($file) { 386 $file = ltrim($file, '/');387 return is_writable('ssh2.sftp://' . $this->sftp_link . '/' . $file);386 // PHP will base it's writable checks on system_user === file_owner, not ssh_user === file_owner 387 return true; 388 388 } 389 389 /**
Note: See TracChangeset
for help on using the changeset viewer.