When I programmaticly set a Magento item attribute to data that the user provided, do I need to SQL escape/sanitize that data or does Magento take care of doing so?

Thanks,
Ben

-- Here's a code example:

$cart = Mage::getSingleton('checkout/cart');
$cart->addProduct($product, array('qty' => 1, 'options' => array(5 =>$rawDataFromPost)));
$cart->save();
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Data is properly sanitized and quoted. In fact the Zend framework does that, which Magento is built on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.