Ignore:
Timestamp:
2012/02/15 19:56:17 (14 years ago)
Author:
Seasoft
Message:

#1625 (typo修正・ソース整形・ソースコメントの改善)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/mypage/LC_Page_AbstractMypage.php

    r21481 r21514  
    6666            // クッキー判定(メールアドレスをクッキーに保存しているか) 
    6767            $this->tpl_login_email = $objCookie->getCookie('login_email'); 
    68             if ($this->tpl_login_email != "") { 
     68            if ($this->tpl_login_email != '') { 
    6969                $this->tpl_login_memory = '1'; 
    7070            } 
     
    7272            // POSTされてきたIDがある場合は優先する。 
    7373            if(isset($_POST['login_email']) 
    74                && $_POST['login_email'] != "") { 
     74               && $_POST['login_email'] != '') { 
    7575                $this->tpl_login_email = $_POST['login_email']; 
    7676            } 
Note: See TracChangeset for help on using the changeset viewer.