
Anton Hemnell - 2008-05-22 08:35:27
The separation of attribute and value is done by exploding with '=' as separator.
Solution is to only explode at first equal sign (works as of php 4.0.1).
Original (around line 202):
$attrSubSet = explode('=', trim($attrSet[$i]));
Change to:
$attrSubSet = explode('=', trim($attrSet[$i]), 2);