Filesystem API: Fix typo in `ftp_base::restore()`.

The `ftp_base::restore()` method contained a typo internally: "resore" should be "restore".

Follow-up to [7126].

Props benniledl, hellofromTonya, audrasjb.
Fixes #60497.
Built from https://develop.svn.wordpress.org/trunk@57591


git-svn-id: http://core.svn.wordpress.org/trunk@57092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
costdev 2024-02-12 12:07:10 +00:00
parent 48da229fa5
commit c309be74be
2 changed files with 2 additions and 2 deletions

View File

@ -483,7 +483,7 @@ class ftp_base {
$this->PushError("restore", "cannot restore in ASCII mode");
return FALSE;
}
if(!$this->_exec("REST ".$from, "resore")) return FALSE;
if(!$this->_exec("REST ".$from, "restore")) return FALSE;
if(!$this->_checkCode()) return FALSE;
return TRUE;
}

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.5-alpha-57590';
$wp_version = '6.5-alpha-57591';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.