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:
Sergey Biryukov 2020-08-17 00:55:28 +00:00
parent aabef3109e
commit 6b6be351ef
1 changed files with 1 additions and 1 deletions

View File

@ -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;