10 lines
194 B
PHP
10 lines
194 B
PHP
<?php
|
|
|
|
if ($this->is_id()) {
|
|
$sql->update_table('user_kid', array('uk_last_notification' => 'null'), array('uk_id' => $this->get_id()));
|
|
header("Location: /admin/notifications");
|
|
}
|
|
|
|
|
|
?>
|