summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cart.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-03-26 14:03:40 +0200
committerAndrey Andreev <narf@bofh.bg>2012-03-26 14:03:40 +0200
commit74476e1c4371bb7dc8c9727898026687d875284f (patch)
treeb391f40f31b5d4dd0d0945ab968dfb2049567b15 /system/libraries/Cart.php
parent6f042ccc261645530e897bb8c390eae0640bacb0 (diff)
Switch private methods and properties to protected and cleanup the Parser library
Diffstat (limited to 'system/libraries/Cart.php')
-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 305960f5f..ca7be555e 100644
--- a/system/libraries/Cart.php
+++ b/system/libraries/Cart.php
@@ -134,7 +134,7 @@ class CI_Cart {
* @param array
* @return bool
*/
- private function _insert($items = array())
+ protected function _insert($items = array())
{
// Was any cart data passed? No? Bah...
if ( ! is_array($items) OR count($items) === 0)