diff options
author | Ahmad Anbar <aanbar@gmail.com> | 2014-03-14 15:53:44 +0100 |
---|---|---|
committer | Ahmad Anbar <aanbar@gmail.com> | 2014-03-14 15:53:44 +0100 |
commit | 2702a3b647785c06bf21ba0b6b36cacef2f8ee1f (patch) | |
tree | ba1f14bdcadc6eec7af2068a0f8f3221cfba7021 /system/libraries/Cart.php | |
parent | 9af0746825a1af1c463462c10bdff70f58ded72a (diff) |
Fixed coding style & line length.
Diffstat (limited to 'system/libraries/Cart.php')
-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 9c9a285cd..cd46a6ef6 100644 --- a/system/libraries/Cart.php +++ b/system/libraries/Cart.php @@ -338,7 +338,7 @@ class CI_Cart { } // Prep the quantity - if ( isset($items['qty']) ) + if (isset($items['qty'])) { $items['qty'] = (float) $items['qty']; // Is the quantity zero? If so we will remove the item from the cart. |