summaryrefslogtreecommitdiffstats
path: root/system/core/Loader.php
diff options
context:
space:
mode:
authorDarren Hill <dchill42@gmail.com>2011-08-30 21:40:27 +0200
committerDarren Hill <dchill42@gmail.com>2011-08-30 21:40:27 +0200
commitc4e266b87f39d521ff1002fefa9df809c6b9bd61 (patch)
tree212e27cd693c7b2005c765bb794d99d8156b65ee /system/core/Loader.php
parent70e61b5dc0b240c4a3341ca65ad9f2f5254df1b5 (diff)
Added Session driver with native PHP sessions and original-flavor CI cookie sessions
Diffstat (limited to 'system/core/Loader.php')
-rwxr-xr-xsystem/core/Loader.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php
index de0fc06d2..51e6b82ca 100755
--- a/system/core/Loader.php
+++ b/system/core/Loader.php
@@ -1174,6 +1174,15 @@ class CI_Loader {
}
}
+ // Autoload drivers
+ if (isset($autoload['drivers']))
+ {
+ foreach ($autoload['drivers'] as $item)
+ {
+ $this->driver($item);
+ }
+ }
+
// Autoload models
if (isset($autoload['model']))
{
@@ -1240,4 +1249,4 @@ class CI_Loader {
}
/* End of file Loader.php */
-/* Location: ./system/core/Loader.php */ \ No newline at end of file
+/* Location: ./system/core/Loader.php */