diff options
author | vlakoff <vlakoff@gmail.com> | 2012-06-27 03:28:55 +0200 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2012-06-27 03:28:55 +0200 |
commit | 625c43a2f451191d0195f6311dd3a7ea94439988 (patch) | |
tree | 59bfaf02fb1a1e732c24d29a69342cb9c8a884bf | |
parent | a36fd63379cba76128ed4a0d88e9466abb4419d8 (diff) |
Fix a PHPDoc error in FTP Class
The second parameter of the "chmod" method is an octal integer.
-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 461e884fb..76f5e151a 100644 --- a/system/libraries/Ftp.php +++ b/system/libraries/Ftp.php @@ -445,7 +445,7 @@ class CI_FTP { * Set file permissions * * @param string the file path - * @param string the permissions + * @param int the permissions * @return bool */ public function chmod($path, $perm) |