source: temp/branches/mobile/html/mobile/redirect.php @ 11406

Revision 11406, 327 bytes checked in by rebelt, 17 years ago (diff)

以下のモバイルサイト用ページ・機能を作成いたしました。

  • ログイン
  • パスワードを忘れた方
  • ご利用ガイド
  • お問い合せ
  • 空メール機能
  • Property svn:eol-style set to native
Line 
1<?php
2/**
3 * ¥â¥Ð¥¤¥ë¥µ¥¤¥È/¶õ¥á¡¼¥ë¤ÎÊÖ¿®¤«¤é¤ÎÁ«°Ü
4 */
5
6define('SKIP_MOBILE_INIT', true);
7require_once 'require.php';
8
9if (isset($_GET['token'])) {
10    $next_url = gfFinishKaraMail($_GET['token']);
11}
12
13if (isset($next_url) && $next_url !== false) {
14    header("Location: $next_url");
15} else {
16    header('Location: ' . SITE_URL);
17}
18?>
Note: See TracBrowser for help on using the repository browser.