From 794b97393f73204610885a384afb07157bc95511 Mon Sep 17 00:00:00 2001 From: yomoro Date: Fri, 4 Feb 2011 13:10:44 +0000 Subject: [PATCH] =?UTF-8?q?#977=E3=80=80=E3=83=AA=E3=83=95=E3=82=A1?= =?UTF-8?q?=E3=82=AF=E3=82=BF=E3=83=AA=E3=83=B3=E3=82=B0=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.ec-cube.net/open/branches/version-2_5-dev@20097 1e3b908f-19a9-db11-a64c-001125224ba8 --- data/class/pages/LC_Page_Redirect.php | 96 --------------------------- 1 file changed, 96 deletions(-) delete mode 100644 data/class/pages/LC_Page_Redirect.php 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(); - } -} -?>