source: branches/dev/html/mobile/redirect.php @ 11460

Revision 11460, 327 bytes checked in by inoue, 17 years ago (diff)

モバイル版EC-CUBE

  • 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.