From 1353ffb2ea331e068cddac6afe7a1fa949d207a1 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Sun, 27 Jan 2008 14:54:29 +0000 Subject: 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). --- system/libraries/Ftp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/libraries') 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); } -- cgit v1.2.3-24-g4f1b