mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-02-24 09:42:45 +00: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. git-svn-id: https://develop.svn.wordpress.org/trunk@57591 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
0422b53ad2
commit
876bfaf3e0
@ -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;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user