fixed saving of new settings

This commit is contained in:
Roland Gruber 2004-07-24 11:50:44 +00:00
parent bf5c6ca469
commit aa052ebf10
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ class Config {
$m_settings = array_keys($this->moduleSettings);
for ($i = 0; $i < sizeof($m_settings); $i++) {
if (!in_array($m_settings[$i], $mod_saved)) {
array_push($file_array, "modules: " . $m_settings[$i] . ": " . $this->moduleSettings[$m_settings[$i]] . "\n");
array_push($file_array, "modules: " . $m_settings[$i] . ": " . implode("+::+", $this->moduleSettings[$m_settings[$i]]) . "\n");
}
}
$file = fopen($conffile, "w");