summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2013-01-25 10:39:17 +0100
committerAndrey Andreev <narf@bofh.bg>2013-01-25 10:39:17 +0100
commit0dce7ec2d69c8c9e5e9e0b8a26bc4cbe388350f6 (patch)
tree2c4b42dfd9eda105600bb3f589a3f8e18b9dc912 /system
parent1a0014941dcf399e97d3586bd6d3382166b413dd (diff)
parentedc9afa09b01f67089f121ed7054fe3a5a3b8ec2 (diff)
Merge pull request #2192 from tkaw220/develop
Fix issue #2191.
Diffstat (limited to 'system')
-rw-r--r--system/libraries/Cart.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Cart.php b/system/libraries/Cart.php
index 8734d7774..d64f6f042 100644
--- a/system/libraries/Cart.php
+++ b/system/libraries/Cart.php
@@ -95,7 +95,7 @@ class CI_Cart {
$config = is_array($params) ? $params : array();
// Load the Sessions class
- $this->CI->load->library('session', $config);
+ $this->CI->load->driver('session', $config);
// Grab the shopping cart array from the session table
$this->_cart_contents = $this->CI->session->userdata('cart_contents');