Changeset 16392 for branches/feature-module-update/html/mobile/redirect.php
- Timestamp:
- 2007/10/12 12:41:54 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/html/mobile/redirect.php
r16124 r16392 7 7 * 8 8 * 9 * モバイルサイト/ 空メールの返信からの遷移9 * モバイルサイト/メールからのリダイレクト 10 10 */ 11 11 12 // FIXME13 define('SKIP_MOBILE_INIT', true);14 require_once 'require.php';12 // {{{ requires 13 require_once("./require.php"); 14 require_once(CLASS_EX_PATH . "page_extends/LC_Page_Redirect_Ex.php"); 15 15 16 if (isset($_GET['token'])) { 17 $next_url = GC_Utils_Ex::gfFinishKaraMail($_GET['token']); 18 } 16 // }}} 17 // {{{ generate page 19 18 20 if (isset($next_url) && $next_url !== false) { 21 header("Location: $next_url"); 22 } else { 23 header('Location: ' . MOBILE_SITE_URL); 24 } 19 $objPage = new LC_Page_Redirect_Ex(); 20 $objPage->mobileInit(); 21 $objPage->mobileProcess(); 22 register_shutdown_function(array($objPage, "destroy")); 25 23 ?>
Note: See TracChangeset
for help on using the changeset viewer.
