Changeset 381

Show
Ignore:
Timestamp:
07/29/08 16:22:26 (5 months ago)
Author:
mrook
Message:

#241 - Fix typos

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.3/classes/phing/tasks/ext/FtpDeployTask.php

    r340 r381  
    127127                $ret = $ftp->connect(); 
    128128                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()); 
    130130                $ret = $ftp->login($this->username, $this->password); 
    131131                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()); 
    133133                 
    134134                if($this->clearFirst) {