Index: branches/feature-module-update/data/class/pages/mypage/LC_Page_Mypage_ChangeComplete.php
===================================================================
--- branches/feature-module-update/data/class/pages/mypage/LC_Page_Mypage_ChangeComplete.php	(revision 16237)
+++ branches/feature-module-update/data/class/pages/mypage/LC_Page_Mypage_ChangeComplete.php	(revision 16237)
@@ -0,0 +1,110 @@
+<?php
+/*
+ * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ */
+
+// {{{ requires
+require_once(CLASS_PATH . "pages/LC_Page.php");
+
+/**
+ * 登録内容変更完了 のページクラス.
+ *
+ * @package Page
+ * @author LOCKON CO.,LTD.
+ * @version $Id$
+ */
+class LC_Page_Mypage_ChangeComplete extends LC_Page {
+
+    // }}}
+    // {{{ functions
+
+    /**
+     * Page を初期化する.
+     *
+     * @return void
+     */
+    function init() {
+        parent::init();
+        $this->tpl_mainpage = TEMPLATE_DIR . 'mypage/change_complete.tpl';
+        $this->tpl_title = 'MYページ/会員登録内容変更(完了ページ)';
+        $this->tpl_navi = TEMPLATE_DIR . 'mypage/navi.tpl';
+        $this->tpl_mypageno = 'change';
+        $this->tpl_column_num = 1;
+    }
+
+    /**
+     * Page のプロセス.
+     *
+     * @return void
+     */
+    function process() {
+        $objView = new SC_SiteView();
+        $objCustomer = new SC_Customer();
+
+        // レイアウトデザインを取得
+        $objLayout = new SC_Helper_PageLayout_Ex();
+        $objLayout->sfGetPageLayout($this, false, "mypage/index.php");
+
+        //ログイン判定
+        if (!$objCustomer->isLoginSuccess()){
+            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR);
+        } else {
+            //マイページトップ顧客情報表示用
+            $this->CustomerName1 = $objCustomer->getvalue('name01');
+            $this->CustomerName2 = $objCustomer->getvalue('name02');
+            $this->CustomerPoint = $objCustomer->getvalue('point');
+        }
+
+        $objView->assignobj($this);
+        $objView->display(SITE_FRAME);
+    }
+
+    /**
+     * モバイルページを初期化する.
+     *
+     * @return void
+     */
+    function mobileInit() {
+        $this->tpl_mainpage = 'mypage/change_complete.tpl';
+        $this->tpl_title = 'MYページ/会員登録内容変更(完了ページ)';
+    }
+
+    /**
+     * Page のプロセス(モバイル).
+     *
+     * @return void
+     */
+    function mobileProcess() {
+        $objView = new SC_MobileView();
+        $objCustomer = new SC_Customer();
+
+
+        //セッション情報を最新の状態に更新する
+        $objCustomer->updateSession();
+
+        //ログイン判定
+        if (!$objCustomer->isLoginSuccess(true)){
+            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR, "", false, "", true);
+        }else {
+            //マイページトップ顧客情報表示用
+            $this->CustomerName1 = $objCustomer->getvalue('name01');
+            $this->CustomerName2 = $objCustomer->getvalue('name02');
+            $this->CustomerPoint = $objCustomer->getvalue('point');
+        }
+
+        $objView->assignobj($this);
+        $objView->display(SITE_FRAME);
+    }
+
+    /**
+     * デストラクタ.
+     *
+     * @return void
+     */
+    function destroy() {
+        parent::destroy();
+    }
+}
+?>
Index: branches/feature-module-update/data/class/pages/mypage/LC_Page_Mypage_ChangeComplate.php
===================================================================
--- branches/feature-module-update/data/class/pages/mypage/LC_Page_Mypage_ChangeComplate.php	(revision 16236)
+++ 	(revision )
@@ -1,110 +1,0 @@
-<?php
-/*
- * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
- *
- * http://www.lockon.co.jp/
- */
-
-// {{{ requires
-require_once(CLASS_PATH . "pages/LC_Page.php");
-
-/**
- * 登録内容変更完了 のページクラス.
- *
- * @package Page
- * @author LOCKON CO.,LTD.
- * @version $Id$
- */
-class LC_Page_Mypage_ChangeComplete extends LC_Page {
-
-    // }}}
-    // {{{ functions
-
-    /**
-     * Page を初期化する.
-     *
-     * @return void
-     */
-    function init() {
-        parent::init();
-        $this->tpl_mainpage = TEMPLATE_DIR . 'mypage/change_complete.tpl';
-        $this->tpl_title = 'MYページ/会員登録内容変更(完了ページ)';
-        $this->tpl_navi = TEMPLATE_DIR . 'mypage/navi.tpl';
-        $this->tpl_mypageno = 'change';
-        $this->tpl_column_num = 1;
-    }
-
-    /**
-     * Page のプロセス.
-     *
-     * @return void
-     */
-    function process() {
-        $objView = new SC_SiteView();
-        $objCustomer = new SC_Customer();
-
-        // レイアウトデザインを取得
-        $objLayout = new SC_Helper_PageLayout_Ex();
-        $objLayout->sfGetPageLayout($this, false, "mypage/index.php");
-
-        //ログイン判定
-        if (!$objCustomer->isLoginSuccess()){
-            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR);
-        } else {
-            //マイページトップ顧客情報表示用
-            $this->CustomerName1 = $objCustomer->getvalue('name01');
-            $this->CustomerName2 = $objCustomer->getvalue('name02');
-            $this->CustomerPoint = $objCustomer->getvalue('point');
-        }
-
-        $objView->assignobj($this);
-        $objView->display(SITE_FRAME);
-    }
-
-    /**
-     * モバイルページを初期化する.
-     *
-     * @return void
-     */
-    function mobileInit() {
-        $this->tpl_mainpage = 'mypage/change_complete.tpl';
-        $this->tpl_title = 'MYページ/会員登録内容変更(完了ページ)';
-    }
-
-    /**
-     * Page のプロセス(モバイル).
-     *
-     * @return void
-     */
-    function mobileProcess() {
-        $objView = new SC_MobileView();
-        $objCustomer = new SC_Customer();
-
-
-        //セッション情報を最新の状態に更新する
-        $objCustomer->updateSession();
-
-        //ログイン判定
-        if (!$objCustomer->isLoginSuccess(true)){
-            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR, "", false, "", true);
-        }else {
-            //マイページトップ顧客情報表示用
-            $this->CustomerName1 = $objCustomer->getvalue('name01');
-            $this->CustomerName2 = $objCustomer->getvalue('name02');
-            $this->CustomerPoint = $objCustomer->getvalue('point');
-        }
-
-        $objView->assignobj($this);
-        $objView->display(SITE_FRAME);
-    }
-
-    /**
-     * デストラクタ.
-     *
-     * @return void
-     */
-    function destroy() {
-        parent::destroy();
-    }
-}
-?>
Index: branches/feature-module-update/data/class/page_extends/mypage/LC_Page_Mypage_ChangeComplete_Ex.php
===================================================================
--- branches/feature-module-update/data/class/page_extends/mypage/LC_Page_Mypage_ChangeComplete_Ex.php	(revision 16237)
+++ branches/feature-module-update/data/class/page_extends/mypage/LC_Page_Mypage_ChangeComplete_Ex.php	(revision 16237)
@@ -0,0 +1,52 @@
+<?php
+/*
+ * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ */
+
+// {{{ requires
+require_once(CLASS_PATH . "pages/mypage/LC_Page_Mypage_ChangeComplete.php");
+
+/**
+ * 登録内容変更完了 のページクラス(拡張).
+ *
+ * LC_Page_Mypage_ChangeComplete をカスタマイズする場合はこのクラスを編集する.
+ *
+ * @package Page
+ * @author LOCKON CO.,LTD.
+ * @version $Id$
+ */
+class LC_Page_Mypage_ChangeComplete_Ex extends LC_Page_Mypage_ChangeComplete {
+
+    // }}}
+    // {{{ functions
+
+    /**
+     * Page を初期化する.
+     *
+     * @return void
+     */
+    function init() {
+        parent::init();
+    }
+
+    /**
+     * Page のプロセス.
+     *
+     * @return void
+     */
+    function process() {
+        parent::process();
+    }
+
+    /**
+     * デストラクタ.
+     *
+     * @return void
+     */
+    function destroy() {
+        parent::destroy();
+    }
+}
+?>
Index: branches/feature-module-update/data/class/page_extends/mypage/LC_Page_Mypage_ChangeComplate_Ex.php
===================================================================
--- branches/feature-module-update/data/class/page_extends/mypage/LC_Page_Mypage_ChangeComplate_Ex.php	(revision 16236)
+++ 	(revision )
@@ -1,52 +1,0 @@
-<?php
-/*
- * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
- *
- * http://www.lockon.co.jp/
- */
-
-// {{{ requires
-require_once(CLASS_PATH . "pages/mypage/LC_Page_Mypage_ChangeComplete.php");
-
-/**
- * 登録内容変更完了 のページクラス(拡張).
- *
- * LC_Page_Mypage_ChangeComplete をカスタマイズする場合はこのクラスを編集する.
- *
- * @package Page
- * @author LOCKON CO.,LTD.
- * @version $Id$
- */
-class LC_Page_Mypage_ChangeComplete_Ex extends LC_Page_Mypage_ChangeComplete {
-
-    // }}}
-    // {{{ functions
-
-    /**
-     * Page を初期化する.
-     *
-     * @return void
-     */
-    function init() {
-        parent::init();
-    }
-
-    /**
-     * Page のプロセス.
-     *
-     * @return void
-     */
-    function process() {
-        parent::process();
-    }
-
-    /**
-     * デストラクタ.
-     *
-     * @return void
-     */
-    function destroy() {
-        parent::destroy();
-    }
-}
-?>
