Changeset 18727


Ignore:
Timestamp:
2010/06/22 15:09:45 (14 years ago)
Author:
nanasess
bzr:base-revision:
ohkouchi@loop-az.jp-20100622060138-0bnti85taez6jdsx
bzr:committer:
Kentaro Ohkouchi <ohkouchi@loop-az.jp>
bzr:file-ids:

data/Smarty/templates/default/header.tpl 15747@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2FSmarty%2Ftemplates%2Fdefault%2Fheader.tpl
data/class/pages/mypage/LC_Page_Mypage_Login.php 16076@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fmypage%2FLC_Page_Mypage_Login.php
data/class/pages/mypage/LC_Page_Mypage_LoginCheck.php 16090@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fmypage%2FLC_Page_Mypage_LoginCheck.php
bzr:mapping-version:
v4
bzr:repository-uuid:
1e3b908f-19a9-db11-a64c-001125224ba8
bzr:revision-id:
ohkouchi@loop-az.jp-20100622060942-plqe8f98tkb1kl17
bzr:revno:
1934
bzr:revprop:branch-nick:
branches/version-2_4
bzr:root:
branches/version-2_4
bzr:text-parents:

data/Smarty/templates/default/header.tpl svn-v4:1e3b908f-19a9-db11-a64c-001125224ba8:branches/version-2_4:18425
data/class/pages/mypage/LC_Page_Mypage_Login.php svn-v4:1e3b908f-19a9-db11-a64c-001125224ba8:branches/version-2:17653
data/class/pages/mypage/LC_Page_Mypage_LoginCheck.php svn-v4:1e3b908f-19a9-db11-a64c-001125224ba8:branches/version-2_4:17771
bzr:timestamp:
2010-06-22 15:09:42.128000021 +0900
bzr:user-agent:
bzr2.1.1+bzr-svn1.0.2
svn:original-date:
2010-06-22T06:09:42.128000Z
Message:

merged r18672

  • MYページへログインする際, SSL_URL に遷移するよう修正(#560)
Location:
branches/version-2_4/data
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_4/data/Smarty/templates/default/header.tpl

    r18425 r18727  
    2929    <ul> 
    3030      <li> 
    31         <a href="<!--{$smarty.const.URL_DIR}-->mypage/login.php" 
     31        <a href="<!--{$smarty.const.SSL_URL}-->mypage/login.php" 
    3232           onmouseover="chgImg('<!--{$TPL_DIR}-->img/header/mypage_on.gif','mypage');" 
    3333           onmouseout="chgImg('<!--{$TPL_DIR}-->img/header/mypage.gif','mypage');"> 
  • branches/version-2_4/data/class/pages/mypage/LC_Page_Mypage_Login.php

    r17653 r18727  
    6464        // ログイン判定 
    6565        if($objCustomer->isLoginSuccess()) { 
    66             $this->sendRedirect($this->getLocation("./index.php")); 
     66            $this->sendRedirect($this->getLocation("./index.php", array(), true)); 
    6767            exit; 
    6868        } else { 
  • branches/version-2_4/data/class/pages/mypage/LC_Page_Mypage_LoginCheck.php

    r17771 r18727  
    9090 
    9191            if($objCustomer->getCustomerDataFromEmailPass($arrForm['mypage_login_pass'], $arrForm['mypage_login_email'], true)) { 
    92                 $this->sendRedirect($this->getLocation("./index.php")); 
     92                $this->sendRedirect($this->getLocation("./index.php", array(), true)); 
    9393                exit; 
    9494            } else { 
Note: See TracChangeset for help on using the changeset viewer.