Commit 19237d77 authored by Sergey Biryukov's avatar Sergey Biryukov
Browse files

Filesystem API: Use correct variable when closing the file handle in...

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.
Built from https://develop.svn.wordpress.org/branches/5.5@48803


git-svn-id: https://core.svn.wordpress.org/branches/5.5@48565 1a063a9b-81f0-0310-95a4-ce76da25c4cd
parent 00725b22
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 *
 * @global string $wp_version
 */
$wp_version = '5.5.1-alpha-48787';
$wp_version = '5.5.1-alpha-48803';

/**
 * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.