summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source
diff options
context:
space:
mode:
authorvlakoff <vlakoff@gmail.com>2012-06-27 02:46:19 +0200
committervlakoff <vlakoff@gmail.com>2012-06-27 02:46:19 +0200
commita36fd63379cba76128ed4a0d88e9466abb4419d8 (patch)
treede2776bb07344ddb8882eee8fd1bb50f32687617 /user_guide_src/source
parent2fce2a95e99c91c57f7d15b5e441b2cf89193da3 (diff)
FTP Class documentation cleanup
Since PHP 5 is required, setting permissions is always possible.
Diffstat (limited to 'user_guide_src/source')
-rw-r--r--user_guide_src/source/libraries/ftp.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/user_guide_src/source/libraries/ftp.rst b/user_guide_src/source/libraries/ftp.rst
index 20b11a5c8..05a3fdcc8 100644
--- a/user_guide_src/source/libraries/ftp.rst
+++ b/user_guide_src/source/libraries/ftp.rst
@@ -26,7 +26,7 @@ Usage Examples
In this example a connection is opened to the FTP server, and a local
file is read and uploaded in ASCII mode. The file permissions are set to
-755. Note: Setting permissions requires PHP 5.
+755.
::
@@ -136,8 +136,7 @@ Example::
**Mode options are:** ascii, binary, and auto (the default). If auto is
used it will base the mode on the file extension of the source file.
-Permissions are available if you are running PHP 5 and can be passed as
-an octal value in the fourth parameter.
+If set, permissions have to be passed as an octal value.
$this->ftp->download()
======================