Changeset 381
- Timestamp:
- 07/29/08 16:22:26 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.3/classes/phing/tasks/ext/FtpDeployTask.php
r340 r381 127 127 $ret = $ftp->connect(); 128 128 if(PEAR::isError($ret)) 129 throw new BuildException('Could not connect to FTP server '.$this-> post.' on port '.$this->port.': '.$ret->getMessage());129 throw new BuildException('Could not connect to FTP server '.$this->host.' on port '.$this->port.': '.$ret->getMessage()); 130 130 $ret = $ftp->login($this->username, $this->password); 131 131 if(PEAR::isError($ret)) 132 throw new BuildException('Could not login to FTP server '.$this-> post.' on port '.$this->port.' with username '.$this->username.': '.$ret->getMessage());132 throw new BuildException('Could not login to FTP server '.$this->host.' on port '.$this->port.' with username '.$this->username.': '.$ret->getMessage()); 133 133 134 134 if($this->clearFirst) {
