diff options
Diffstat (limited to 'user_guide/libraries')
-rw-r--r-- | user_guide/libraries/zip.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/libraries/zip.html b/user_guide/libraries/zip.html index 484bbac64..7ee4d7be3 100644 --- a/user_guide/libraries/zip.html +++ b/user_guide/libraries/zip.html @@ -159,7 +159,7 @@ $this->zip->read_file($path); $this->zip->download('my_backup.zip');
</code>
-<p>If you would like the Zip archive to maintain the directory structure the file is in, pass <kbd>TRUE</kbd> (boolean) in the
+<p>If you would like the Zip archive to maintain the directory structure of the file in it, pass <kbd>TRUE</kbd> (boolean) in the
second parameter. Example:</p>
@@ -202,7 +202,7 @@ directory is writable (666 or 777 is usually OK). Example:</p> <h2>$this->zip->download()</h2>
-<p>Causes the Zip file to be downloaded to your server. The function must be passed the name you would like the zip file called.
+<p>Causes the Zip file to be downloaded from your server. The function must be passed the name you would like the zip file called.
Example:</p>
<code>$this->zip->download('latest_stuff.zip'); // File will be named "latest_stuff.zip"</code>
|