1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php require_once("../conf_/siteconf_.php"); require_once($LIBPATH . "module_.php"); class logout extends module_ { function Data_() {} function Process_() { parent::session_connect_(); $this->session_->Destroy(); } function Results_() { header("location:../index.php"); } } ?>
|