diff options
author | dchill42 <dchill42@gmail.com> | 2012-08-30 20:17:28 +0200 |
---|---|---|
committer | dchill42 <dchill42@gmail.com> | 2012-08-30 20:17:28 +0200 |
commit | f8f36db2d967efe8178b78a59ead14c05f50dc12 (patch) | |
tree | 5f44431ee154cba83684712eaf7bf984d7e5e217 /application | |
parent | ac740abc89159fe24165105253ae6048888a16ee (diff) |
Added autoload drivers config, added Session and Loader changes to changelog, added Session config items to upgrade guide
Signed-off-by: dchill42 <dchill42@gmail.com>
Diffstat (limited to 'application')
-rw-r--r-- | application/config/autoload.php | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/application/config/autoload.php b/application/config/autoload.php index b3e63cbf6..ff153fb48 100644 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -46,10 +46,11 @@ | | 1. Packages | 2. Libraries -| 3. Helper files -| 4. Custom config files -| 5. Language files -| 6. Models +| 3. Drivers +| 4. Helper files +| 5. Custom config files +| 6. Language files +| 7. Models | */ @@ -75,7 +76,7 @@ $autoload['packages'] = array(); | | Prototype: | -| $autoload['libraries'] = array('database', 'session', 'xmlrpc'); +| $autoload['libraries'] = array('database', 'email', 'xmlrpc'); */ $autoload['libraries'] = array(); @@ -83,6 +84,22 @@ $autoload['libraries'] = array(); /* | ------------------------------------------------------------------- +| Auto-load Drivers +| ------------------------------------------------------------------- +| These classes are located in the system/libraries folder or in your +| application/libraries folder within their own subdirectory. They +| offer multiple interchangeable driver options. +| +| Prototype: +| +| $autoload['drivers'] = array('session', 'cache'); +*/ + +$autoload['drivers'] = array(); + + +/* +| ------------------------------------------------------------------- | Auto-load Helper Files | ------------------------------------------------------------------- | Prototype: @@ -139,4 +156,4 @@ $autoload['model'] = array(); /* End of file autoload.php */ -/* Location: ./application/config/autoload.php */
\ No newline at end of file +/* Location: ./application/config/autoload.php */ |