summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cart.php
diff options
context:
space:
mode:
authorAndrew Seymour <commit@andrewseymour.co.uk>2011-12-13 17:57:13 +0100
committerAndrew Seymour <commit@andrewseymour.co.uk>2011-12-13 17:57:13 +0100
commit17aebce8e06fae0edf1d54cf6823f1b8f48924c0 (patch)
tree239475c8b83e7f9181a9e85009e6b0884538188b /system/libraries/Cart.php
parentde2e96a298cc48b8e86a03d530bc328bd43b0c80 (diff)
Changed the syntax slightly, @philsturgeon may be claustrophobic as he doesn't like no spaces
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 2e580863b..e78ecd5f6 100644
--- a/system/libraries/Cart.php
+++ b/system/libraries/Cart.php
@@ -244,7 +244,7 @@ class CI_Cart {
// Now that we have our unique "row ID", we'll add our cart items to the master array
// grab quantity if it's already there and add it on
- if( isset($this->_cart_contents[$rowid]['qty']))
+ if (isset($this->_cart_contents[$rowid]['qty']))
{
// set our old quantity
$old_quantity = (int)$this->_cart_contents[$rowid]['qty'];