diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-01-27 15:54:29 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-01-27 15:54:29 +0100 |
commit | 1353ffb2ea331e068cddac6afe7a1fa949d207a1 (patch) | |
tree | 48e763c2224ad9c1bf0cee23dc7d89c2c3ef7c12 /system/libraries | |
parent | 4acd792e54f58a5d86269057b5a827440fc2efcd (diff) |
Fixed a bug (#3330) in the FTP class where a comparison wasn't getting made.
Fixed typo in the FTP Class (ftp_unable_to_remame).
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Ftp.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Ftp.php b/system/libraries/Ftp.php index 9fdee0122..ed934b548 100644 --- a/system/libraries/Ftp.php +++ b/system/libraries/Ftp.php @@ -302,7 +302,7 @@ class CI_FTP { {
if ($this->debug == TRUE)
{
- $msg = ($move = FALSE) ? 'ftp_unable_to_remame' : 'ftp_unable_to_move';
+ $msg = ($move == FALSE) ? 'ftp_unable_to_rename' : 'ftp_unable_to_move';
$this->_error($msg);
}
|