Currently broken due to PHP's transparent conversion of "." to "_" in POST variable names!
15 lines
307 B
PHP
15 lines
307 B
PHP
<?php
|
|
|
|
$main = RippingCluster_Main::instance();
|
|
$config = $main->config();
|
|
|
|
// Iterate over the settings and store each one back to the backend
|
|
foreach($_POST as $key => $value) {
|
|
if ($config->exists($key)) {
|
|
$config->set($key, $value);
|
|
}
|
|
}
|
|
|
|
$this->smarty->assign('messages', $messages);
|
|
|
|
?>
|