diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-06-26 09:11:04 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-06-26 09:11:04 +0200 |
commit | bdaa4b2cb615e642ff7a3644bdfbb096406d29ff (patch) | |
tree | e387bf2530f31593b732245bb509c3ff7a15c56b /installer/rcube_install.php | |
parent | 9eaf681b6be9e94b9e737eb2eaaa7272229334b1 (diff) | |
parent | 253f0aed1699c84cbdb684ef53e6c9c56c077d6f (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'installer/rcube_install.php')
-rw-r--r-- | installer/rcube_install.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/installer/rcube_install.php b/installer/rcube_install.php index 473fd2612..637808e8a 100644 --- a/installer/rcube_install.php +++ b/installer/rcube_install.php @@ -217,10 +217,12 @@ class rcube_install // save change $this->config[$prop] = $value; + $dump = self::_dump_var($value, $prop); + // replace the matching line in config file $out = preg_replace( - '/(\$rcmail_config\[\''.preg_quote($prop).'\'\])\s+=\s+(.+);/Uie', - "'\\1 = ' . rcube_install::_dump_var(\$value, \$prop) . ';'", + '/(\$rcmail_config\[\''.preg_quote($prop).'\'\])\s+=\s+(.+);/Ui', + "\\1 = $dump;", $out); } |