Ignore:
Timestamp:
2011/03/07 15:23:39 (13 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)
#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/SC_Customer.php

    r20507 r20538  
    227227 
    228228            $objQuery = new SC_Query_Ex(); 
    229             $email = $objQuery->get("email", "dtb_customer", "customer_id = ?", array($_SESSION['customer']['customer_id'])); 
     229            $email = $objQuery->get('email', "dtb_customer", "customer_id = ?", array($_SESSION['customer']['customer_id'])); 
    230230            if($email == $_SESSION['customer']['email']) { 
    231231                // モバイルサイトの場合は携帯のメールアドレスが登録されていることもチェックする。 
     
    264264            $arrRet = preg_split("|[- :/]|", $_SESSION['customer']['birth']); 
    265265            $birth_month = intval($arrRet[1]); 
    266             $now_month = intval(date("m")); 
     266            $now_month = intval(date('m')); 
    267267 
    268268            if($birth_month == $now_month) { 
Note: See TracChangeset for help on using the changeset viewer.