diff --git a/data/class/pages/LC_Page_Redirect.php b/data/class/pages/LC_Page_Redirect.php deleted file mode 100644 index 8e318ffca6..0000000000 --- a/data/class/pages/LC_Page_Redirect.php +++ /dev/null @@ -1,96 +0,0 @@ -init(); - } - - /** - * Page のプロセス(モバイル). - * - * @return void - */ - function mobileProcess() { - define('SKIP_MOBILE_INIT', true); - - if (isset($_GET['token'])) { - $next_url = GC_Utils_Ex::gfFinishKaraMail($_GET['token']); - } - - // $next_url には, セッションID付与済み - if (isset($next_url) && $next_url !== false) { - $this->sendRedirect($next_url); - } else { - $this->sendRedirect(MOBILE_HTTP_URL, true); - } - } - - /** - * デストラクタ. - * - * @return void - */ - function destroy() { - parent::destroy(); - } -} -?>