diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-11-16 14:04:53 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-11-16 14:04:53 +0100 |
commit | 9e4246d9571481fe7b80227b1e23dc013771c5af (patch) | |
tree | a051a22d8ecda4a648adcfe11504648f57f60e2a /program/include/rcmail_install.php | |
parent | 07280e764357fe844c18beb9ada772956735b49e (diff) |
Code improvements and fixes (mostly unused variables and methods)
Diffstat (limited to 'program/include/rcmail_install.php')
-rw-r--r-- | program/include/rcmail_install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail_install.php b/program/include/rcmail_install.php index 7877b8e33..96e0afbd4 100644 --- a/program/include/rcmail_install.php +++ b/program/include/rcmail_install.php @@ -290,7 +290,7 @@ class rcmail_install $out = $seen = array(); // iterate over the current configuration - foreach ($this->config as $prop => $value) { + foreach (array_keys($this->config) as $prop) { if ($replacement = $this->replaced_config[$prop]) { $out['replaced'][] = array('prop' => $prop, 'replacement' => $replacement); $seen[$replacement] = true; |