mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 09:07:59 +01:00
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:
parent
48da229fa5
commit
c309be74be
@ -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;
|
||||
}
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user