diff options
author | Ahmad Anbar <aanbar@gmail.com> | 2014-03-14 14:33:18 +0100 |
---|---|---|
committer | Ahmad Anbar <aanbar@gmail.com> | 2014-03-14 14:33:18 +0100 |
commit | 9af0746825a1af1c463462c10bdff70f58ded72a (patch) | |
tree | 57efb96ae076ed1e5bd387aa6e370df7df07f687 /system | |
parent | 4321cb0912ad24d78b851a9f39c688cab0341c96 (diff) |
Added missing semicolon
Diffstat (limited to 'system')
-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 6cc1509b6..9c9a285cd 100644 --- a/system/libraries/Cart.php +++ b/system/libraries/Cart.php @@ -346,7 +346,7 @@ class CI_Cart { if ($items['qty'] == 0) { unset($this->_cart_contents[$items['rowid']]); - return TRUE + return TRUE; } } |