diff options
author | Andrey Andreev <narf@bofh.bg> | 2013-01-25 10:39:17 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2013-01-25 10:39:17 +0100 |
commit | 0dce7ec2d69c8c9e5e9e0b8a26bc4cbe388350f6 (patch) | |
tree | 2c4b42dfd9eda105600bb3f589a3f8e18b9dc912 | |
parent | 1a0014941dcf399e97d3586bd6d3382166b413dd (diff) | |
parent | edc9afa09b01f67089f121ed7054fe3a5a3b8ec2 (diff) |
Merge pull request #2192 from tkaw220/develop
Fix issue #2191.
-rw-r--r-- | system/libraries/Cart.php | 2 |
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'); |