Changeset 15289
- Timestamp:
- 2007/08/16 15:39:40 (16 years ago)
- Location:
- branches/feature-module-update
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/SC_Session.php
r15287 r15289 98 98 session_destroy(); 99 99 // ログに記録する 100 gfPrintLog("logout : user=".$this->login_id." auth=".$this->authority." sid=".$this->sid);100 GC_Utils_Ex::gfPrintLog("logout : user=".$this->login_id." auth=".$this->authority." sid=".$this->sid); 101 101 } 102 102 … … 109 109 unset($_SESSION['uniqid']); 110 110 // ログに記録する 111 gfPrintLog("logout : user=".$this->login_id." auth=".$this->authority." sid=".$this->sid);111 GC_Utils_Ex::gfPrintLog("logout : user=".$this->login_id." auth=".$this->authority." sid=".$this->sid); 112 112 } 113 113 } -
branches/feature-module-update/html/admin/logout.php
r15080 r15289 5 5 * http://www.lockon.co.jp/ 6 6 */ 7 // {{{ requires 7 8 require_once("./require.php"); 9 require_once(CLASS_PATH . "page_extends/admin/LC_Page_Admin_Logout_Ex.php"); 8 10 9 $objSess = new SC_Session(); 10 $objSess->logout(); 11 // }}} 12 // {{{ generate page 11 13 12 header("Location: " . URL_DIR . "admin/index.php"); 14 $objPage = new LC_Page_Admin_Logout_Ex(); 15 $objPage->init(); 16 $objPage->process(); 17 register_shutdown_function(array($objPage, "destroy")); 13 18 ?>
Note: See TracChangeset
for help on using the changeset viewer.