meh, forgot to uncomment the settings storage for settings-import

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2018-02-12 07:46:38 +01:00
parent 295fbae6f5
commit 05f1bf0a1f

View File

@@ -98,14 +98,14 @@ class SImExporter
// when there were changes in the variable-name or similar // when there were changes in the variable-name or similar
unset($_data['panel.version']); unset($_data['panel.version']);
unset($_data['panel.db_version']); unset($_data['panel.db_version']);
/*
// store new data // store new data
foreach ($_data as $index => $value) { foreach ($_data as $index => $value) {
Settings::Set($index, $value); Settings::Set($index, $value);
} }
// save to DB // save to DB
Settings::Flush(); Settings::Flush();
*/
// all good // all good
return true; return true;
} }