summaryrefslogtreecommitdiffstats
path: root/system/libraries/Ftp.php
diff options
context:
space:
mode:
authorvlakoff <vlakoff@gmail.com>2012-06-27 03:28:55 +0200
committervlakoff <vlakoff@gmail.com>2012-06-27 03:28:55 +0200
commit625c43a2f451191d0195f6311dd3a7ea94439988 (patch)
tree59bfaf02fb1a1e732c24d29a69342cb9c8a884bf /system/libraries/Ftp.php
parenta36fd63379cba76128ed4a0d88e9466abb4419d8 (diff)
Fix a PHPDoc error in FTP Class
The second parameter of the "chmod" method is an octal integer.
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 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)