10 lines
226 B
PHP
10 lines
226 B
PHP
<?php
|
|
|
|
if ($this->is_id()) {
|
|
$sql->update_table('money_expense', array('mox_deleted' => 1), array('mox_id' => $this->get_id()));
|
|
log::register('delete_mox', $this->get_id());
|
|
header("Location: /admin/money_expense");
|
|
}
|
|
|
|
|
|
?>
|