Don't reset 'plugins' config option when running from update.sh script

pull/263/merge
Thomas Bruederli 10 years ago
parent 04009e5ccb
commit be140e827d

@ -234,10 +234,9 @@ class rcmail_install
else if (is_numeric($value)) { else if (is_numeric($value)) {
$value = intval($value); $value = intval($value);
} }
else if ($prop == 'plugins') { else if ($prop == 'plugins' && !empty($_POST['submit'])) {
$value = array(); $value = array();
foreach(array_keys($_POST) as $key) foreach (array_keys($_POST) as $key) {
{
if (preg_match('/^_plugins_*/', $key)) if (preg_match('/^_plugins_*/', $key))
array_push($value, $_POST[$key]); array_push($value, $_POST[$key]);
} }

Loading…
Cancel
Save