updates and restart camps

This commit is contained in:
Tóth Richárd
2018-05-03 20:27:35 +02:00
parent 392b484666
commit a249c20433
38 changed files with 1153 additions and 235 deletions

View File

@@ -0,0 +1,12 @@
<?php
if ($this->is_id()) {
$sql->update_table('money_income', array('mi_deleted' => 1), array('mi_id' => $this->get_id()));
$mi = new money_income();
$mi->set_mi_data_by_id($this->get_id());
log::register('delete_mi', $mi->get_mi_item() . ": " . $mi->get_mi_sum() . " Ft");
header("Location: /admin/money_income");
}
?>