From 325197e700564f8e4e0ba7c9fc82abfd85f451b0 Mon Sep 17 00:00:00 2001 From: Rick Ellis Date: Mon, 20 Nov 2006 17:29:05 +0000 Subject: --- user_guide/libraries/config.html | 2 +- user_guide/libraries/file_uploading.html | 2 +- user_guide/libraries/ftp.html | 4 ++-- user_guide/libraries/sessions.html | 2 +- user_guide/libraries/unit_testing.html | 2 +- user_guide/libraries/xmlrpc.html | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) (limited to 'user_guide/libraries') diff --git a/user_guide/libraries/config.html b/user_guide/libraries/config.html index d22881fa6..c88b5d671 100644 --- a/user_guide/libraries/config.html +++ b/user_guide/libraries/config.html @@ -179,7 +179,7 @@ Previous Topic:  Calendaring Class    ·   Top of Page   ·   User Guide Home   ·   -Next Topic:  Database Class +Next Topic:  Database Class

Code Igniter  ·  Copyright © 2006  ·  pMachine, Inc.

diff --git a/user_guide/libraries/file_uploading.html b/user_guide/libraries/file_uploading.html index 1fa93bf17..25054c7e4 100644 --- a/user_guide/libraries/file_uploading.html +++ b/user_guide/libraries/file_uploading.html @@ -230,7 +230,7 @@ $config['max_size'] = '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';

-$this->load->library('ftp', $config);

+$this->load->library('upload', $config);

// Alternately you can set preferences by calling the initialize function. Useful if you auto-load the class:
$this->upload->initialize($config); diff --git a/user_guide/libraries/ftp.html b/user_guide/libraries/ftp.html index 0bec3a828..014b94d2a 100644 --- a/user_guide/libraries/ftp.html +++ b/user_guide/libraries/ftp.html @@ -63,8 +63,8 @@ FTP Class

FTP Class

-

Code Igniter's FTP Class permits files to be uploaded, moved, renamed, and deleted on your server. It also includes a "mirroring" function -that permits a local directory to be recreated remotely via FTP.

+

Code Igniter's FTP Class permits files to be transfered to a remote server. Remote files can also be moved, renamed, +and deleted. The FTP class also includes a "mirroring" function that permits an entire local directory to be recreated remotely via FTP.

Note:  SFTP and SSL FTP protocols are not supported, only standard FTP.

diff --git a/user_guide/libraries/sessions.html b/user_guide/libraries/sessions.html index ed6260f44..017965288 100644 --- a/user_guide/libraries/sessions.html +++ b/user_guide/libraries/sessions.html @@ -238,7 +238,7 @@ If you would like a non-expiring session set the value to zero: 0 sess_encrypt_cookie -TRUE +FALSE TRUE/FALSE (boolean) Whether to encrypt the session data. diff --git a/user_guide/libraries/unit_testing.html b/user_guide/libraries/unit_testing.html index 692df0031..0ebb40116 100644 --- a/user_guide/libraries/unit_testing.html +++ b/user_guide/libraries/unit_testing.html @@ -155,7 +155,7 @@ will evaluate the above code as TRUE using a normal equality test:

To enable strict mode use this:

-$this->unit->strict(TRUE); +$this->unit->use_strict(TRUE);

Enabling/Disabling Unit Testing

diff --git a/user_guide/libraries/xmlrpc.html b/user_guide/libraries/xmlrpc.html index 9421e0fea..01a88d78c 100644 --- a/user_guide/libraries/xmlrpc.html +++ b/user_guide/libraries/xmlrpc.html @@ -485,7 +485,7 @@ Previous Topic:  Validation Class    ·   Top of Page   ·   User Guide Home   ·   -Next Topic:  Array Helper +Next Topic:  Zip Encoding Class

Code Igniter  ·  Copyright © 2006  ·  pMachine, Inc.

-- cgit v1.2.3-24-g4f1b