Added Session driver with native PHP sessions and original-flavor CI cookie sessions
diff --git a/system/core/Loader.php b/system/core/Loader.php
index de0fc06..51e6b82 100755
--- a/system/core/Loader.php
+++ b/system/core/Loader.php
@@ -1174,6 +1174,15 @@
 			}
 		}
 
+		// Autoload drivers
+		if (isset($autoload['drivers']))
+		{
+            foreach ($autoload['drivers'] as $item)
+            {
+			    $this->driver($item);
+            }
+		}
+
 		// Autoload models
 		if (isset($autoload['model']))
 		{
@@ -1240,4 +1249,4 @@
 }
 
 /* End of file Loader.php */
-/* Location: ./system/core/Loader.php */
\ No newline at end of file
+/* Location: ./system/core/Loader.php */