Filesystem API: Use correct variable when closing the file handle in WP_Filesystem_FTPext::get_contents()
.
Props gothick@gothick.org.uk. Merges [48797] to the 5.5 branch. Fixes #51029. git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48803 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
aabef3109e
commit
6b6be351ef
@ -156,7 +156,7 @@ class WP_Filesystem_FTPext extends WP_Filesystem_Base {
|
||||
$contents .= fread( $temphandle, 8 * KB_IN_BYTES );
|
||||
}
|
||||
|
||||
fclose( $temphangle );
|
||||
fclose( $temphandle );
|
||||
unlink( $tempfile );
|
||||
|
||||
return $contents;
|
||||
|
Loading…
Reference in New Issue
Block a user