issue 2956. fixed a bug. does not work save site design settings when magic_quotes_gpc is on

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12754 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2013-02-15 02:11:27 +00:00
parent 918ca5ae88
commit 25b7908d7f

View file

@ -1202,7 +1202,7 @@ class Context
foreach($params as $key => $val)
{
$val = $this->_filterRequestVar($key, $val, 0);
$val = $this->_filterRequestVar($key, $val, 1);
$this->set($key, $val, true);
}
}