|
1234567891011121314151617181920212223 |
- <?php
-
- require_once(dirname(__FILE__).'/../../system/common.inc.php');
- require_once(DEDEINC.'/userlogin.class.php');
- $cuserLogin = new userLogin();
- $cuserLogin->exitUser();
- if (empty($needclose)) {
- header('location:index.php');
- } else {
- $msg = "<script language='javascript'>
- if(document.all) window.opener=true;
- window.close();
- </script>";
- echo $msg;
- }
|