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/language/english/ftp_lang.php | |
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/language/english/ftp_lang.php')
-rw-r--r-- | system/language/english/ftp_lang.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/language/english/ftp_lang.php b/system/language/english/ftp_lang.php index 0b7087a6c..da744fea7 100644 --- a/system/language/english/ftp_lang.php +++ b/system/language/english/ftp_lang.php @@ -8,7 +8,7 @@ $lang['ftp_unable_to_changedir'] = "Unable to change directories."; $lang['ftp_unable_to_chmod'] = "Unable to set file permissions. Please check your path. Note: This feature is only available in PHP 5 or higher.";
$lang['ftp_unable_to_upload'] = "Unable to upload the specified file. Please check your path.";
$lang['ftp_no_source_file'] = "Unable to locate the source file. Please check your path.";
-$lang['ftp_unable_to_remame'] = "Unable to rename the file.";
+$lang['ftp_unable_to_rename'] = "Unable to rename the file.";
$lang['ftp_unable_to_delete'] = "Unable to delete the file.";
$lang['ftp_unable_to_move'] = "Unable to move the file. Please make sure the destination directory exists.";
|