Remove deprecated (in PHP 5.5) PREG /e modifier usage (#1489174)
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Remove deprecated (in PHP 5.5) PREG /e modifier usage (#1489174) |
| | | - Fix empty messages list when register_globals is enabled (#1489157) |
| | | - Improved/unified attachment preview screen, added print button |
| | | - Fix lack of space between searchfiler and quicksearchbar in Larry skin (#1489158) |
| | |
| | | // 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); |
| | | } |
| | | |