Fix config saving (#851)

This commit is contained in:
RainLoop Team 2016-05-22 17:14:24 +03:00
parent 0f981a9e51
commit 4fcb4a4662

View file

@ -316,7 +316,7 @@ abstract class AbstractConfig
{
default:
case 'string':
$sValue = '"'.$mParamValue[0].'"';
$sValue = '"'.\str_replace('"', '\"', $mParamValue[0]).'"';
break;
case 'int':
case 'integer':