blob: d3eb7c102b1c91d406123b95ebfac7386c790811 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
require_once "class/model.class.php";
class DeauthModel extends Model
{
/*
* Default action
*/
function deflt()
{
$this->setCurrentUser();
$this->redirectTo($this->ar() . "/");
}
}
?>
|