Fix : extrafields were save without escape
This commit is contained in:
parent
09c53cbe40
commit
80cf467c47
@ -2165,7 +2165,7 @@ abstract class CommonObject
|
||||
{
|
||||
if ($this->array_options[$key] != '')
|
||||
{
|
||||
$sql.=",'".$this->array_options[$key]."'";
|
||||
$sql.=",'".$this->db->escape($this->array_options[$key])."'";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user