source: branches/comu/html/mobile/redirect.php @ 12197

Revision 12197, 439 bytes checked in by adati, 17 years ago (diff)

1.3.0正式版のマージ

  • Property svn:eol-style set to native
Line 
1<?php
2/**
3 *
4 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 *
9 * ¥â¥Ð¥¤¥ë¥µ¥¤¥È/¶õ¥á¡¼¥ë¤ÎÊÖ¿®¤«¤é¤ÎÁ«°Ü
10 */
11
12define('SKIP_MOBILE_INIT', true);
13require_once 'require.php';
14
15if (isset($_GET['token'])) {
16    $next_url = gfFinishKaraMail($_GET['token']);
17}
18
19if (isset($next_url) && $next_url !== false) {
20    header("Location: $next_url");
21} else {
22    header('Location: ' . MOBILE_SITE_URL);
23}
24?>
Note: See TracBrowser for help on using the repository browser.