ftp_base::abort() –
You appear to be a bot. Output may be restricted
Description
Usage
ftp_base::abort();
Parameters
Returns
void
Source
File name: wordpress/wp-admin/includes/class-ftp.php
Lines:
1 to 9 of 9
function abort() { if(!$this->_exec("ABOR", "abort")) return FALSE; if(!$this->ftp_base::_checkCode()) { if($this->_code!=426) return FALSE; if(!$this->_readmsg("abort")) return FALSE; if(!$this->ftp_base::_checkCode()) return FALSE; } return true; }