summaryrefslogtreecommitdiffstats
path: root/system/libraries/Ftp.php
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-01-27 15:54:29 +0100
committerDerek Allard <derek.allard@ellislab.com>2008-01-27 15:54:29 +0100
commit1353ffb2ea331e068cddac6afe7a1fa949d207a1 (patch)
tree48e763c2224ad9c1bf0cee23dc7d89c2c3ef7c12 /system/libraries/Ftp.php
parent4acd792e54f58a5d86269057b5a827440fc2efcd (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/Ftp.php')
-rw-r--r--system/libraries/Ftp.php2
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);
}