Files
webgui/emhttp/plugins/dynamix/include/update.smart.php
2023-11-03 12:36:03 +01:00

34 lines
1.1 KiB
PHP

<?PHP
/* Copyright 2005-2023, Lime Technology
* Copyright 2012-2023, Bergware International.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
?>
<?
if (!isset($_POST['#default'])) {
$top = isset($_POST['#top']);
foreach ($_POST as $key => $value) if ($key[0] != '#') {
if (!strlen($value) || ($top && !$value) || $value == -1) {
unset($_POST[$key]);
if (isset($_POST['#section'])) unset($keys[$_POST['#section']][$key]); else unset($keys[$key]);
}
}
} else {
$text = "";
if (isset($_POST['#section'])) {
unset($keys[$_POST['#section']]);
foreach ($keys as $section => $block) {
$text .= "[$section]\n";
foreach ($block as $key => $value) $text .= "$key=\"$value\"\n";
}
}
if ($text) file_put_contents($file, $text); else @unlink($file);
$save = false;
}
?>