Welcome Guest, Not a member yet? Register   Sign In
Parenthesis problem in cart library
#1

[eluser]Spaxx[/eluser]
i jus noticed this bug recently. When i try to add an item to the cart that has a parenthesis in its name, the item fails to add to cart. Also single and double quotes fail.

Try this:

- This one will work

Code:
$data = array(
               'id'      => 'sku_123ABC',
               'qty'     => 1,
               'price'   => 39.95,
               'name'    => 'Movie Name',
               'options' => array('Size' => 'L', 'Color' => 'Red')
            );

$this->cart->insert($data);


- This wont work...

Code:
$data = array(
               'id'      => 'sku_123ABC',
               'qty'     => 1,
               'price'   => 39.95,
               'name'    => 'Movie Name(2010)',
               'options' => array('Size' => 'L', 'Color' => 'Red')
            );

$this->cart->insert($data);


What could be the problem and whats the workaround?


Messages In This Thread
Parenthesis problem in cart library - by El Forum - 09-21-2010, 02:49 AM
Parenthesis problem in cart library - by El Forum - 09-21-2010, 03:06 AM
Parenthesis problem in cart library - by El Forum - 09-21-2010, 05:46 AM
Parenthesis problem in cart library - by El Forum - 10-06-2010, 03:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB