information data merged to master

This commit is contained in:
Ricsi
2017-02-12 11:16:15 +01:00
15 changed files with 341 additions and 8 deletions

View File

@@ -281,6 +281,16 @@ if (isset($_POST['action'])) {
money_expense::update_money_expense($_POST['mox_name'], $_POST['mox_date'], $_POST['mox_item'], $_POST['mox_sum'], $_POST['mox_moxc_id'], $_POST['mox_id']);
log::register('update_mox', $_POST['mox_id']);
header("Location: /admin/money_expense");
case 'settings_data_edit':
$sql->update_table('setting_value',
array(
'setv_'.$_POST['st_name'] => $_POST['set_val']
),
array(
'setv_id' => $_POST['setv_id']
)
);
break;
default:
# code...