summaryrefslogtreecommitdiffstats
path: root/user_guide_src
diff options
context:
space:
mode:
Diffstat (limited to 'user_guide_src')
-rw-r--r--user_guide_src/source/changelog.rst1
-rw-r--r--user_guide_src/source/libraries/cart.rst4
2 files changed, 3 insertions, 2 deletions
diff --git a/user_guide_src/source/changelog.rst b/user_guide_src/source/changelog.rst
index 36ddbc92e..55146308f 100644
--- a/user_guide_src/source/changelog.rst
+++ b/user_guide_src/source/changelog.rst
@@ -318,6 +318,7 @@ Release Date: Not Released
- Added support for disabling product name strictness via the ``$product_name_safe`` property.
- Changed ``insert()`` method to auto-increment quantity for an item when inserted twice instead of resetting it.
- Changed ``update()`` method to support updating all properties attached to an item.
+ - Removed the requirment of quantity to trigger ``update()``.
- :doc:`Image Manipulation Library <libraries/image_lib>` changes include:
diff --git a/user_guide_src/source/libraries/cart.rst b/user_guide_src/source/libraries/cart.rst
index d7d495967..0ccb6e2f6 100644
--- a/user_guide_src/source/libraries/cart.rst
+++ b/user_guide_src/source/libraries/cart.rst
@@ -205,7 +205,7 @@ Updating The Cart
=================
To update the information in your cart, you must pass an array
-containing the Row ID and quantity to the ``$this->cart->update()``
+containing the Row ID and one or more pre-defined properties to the ``$this->cart->update()``
method.
.. note:: If the quantity is set to zero, the item will be removed from
@@ -318,7 +318,7 @@ Class Reference
This method permits changing the properties of a given item.
Typically it is called from the "view cart" page if a user makes changes
to the quantity before checkout. That array must contain the rowid
- and qty for each item.
+ for each item.
.. method:: remove($rowid)