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

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

Location:
branches/version-2_12-dev/data/class/pages/entry
Files:
3 edited

Legend:

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

    r21481 r21514  
    8383        // PC時は規約ページからの遷移でなければエラー画面へ遷移する 
    8484        if ($this->lfCheckReferer($arrForm, $_SERVER['HTTP_REFERER']) === false) { 
    85             SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, "", true); 
     85            SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, '', true); 
    8686        } 
    8787 
     
    219219        if (CUSTOMER_CONFIRM_MAIL == true) { 
    220220            $subject        = $objHelperMail->sfMakeSubject('会員登録のご確認'); 
    221             $toCustomerMail = $objMailText->fetch("mail_templates/customer_mail.tpl"); 
     221            $toCustomerMail = $objMailText->fetch('mail_templates/customer_mail.tpl'); 
    222222        } else { 
    223223            $subject        = $objHelperMail->sfMakeSubject('会員登録のご完了'); 
    224             $toCustomerMail = $objMailText->fetch("mail_templates/customer_regist_mail.tpl"); 
     224            $toCustomerMail = $objMailText->fetch('mail_templates/customer_regist_mail.tpl'); 
    225225        } 
    226226 
  • branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry_EmailMobile.php

    r21481 r21514  
    121121 
    122122        // FIXME: lfInitParam() で設定すれば良いように感じる 
    123         $objErr->doFunc(array("メールアドレス", 'email_mobile'), array('CHECK_REGIST_CUSTOMER_EMAIL')); 
     123        $objErr->doFunc(array('メールアドレス', 'email_mobile'), array('CHECK_REGIST_CUSTOMER_EMAIL')); 
    124124 
    125125        return $objErr->arrErr; 
  • branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry_Kiyaku.php

    r21481 r21514  
    4444    function init() { 
    4545        parent::init(); 
    46         $this->tpl_title = "ご利用規約"; 
     46        $this->tpl_title = 'ご利用規約'; 
    4747    } 
    4848 
     
    9696     */ 
    9797    function lfMakeKiyakuText($arrKiyaku, $max, $offset) { 
    98         $this->tpl_kiyaku_text = ""; 
     98        $this->tpl_kiyaku_text = ''; 
    9999        for ($i = 0; $i < $max; $i++) { 
    100100            if ($offset !== null && ($offset - 1) <> $i) continue; 
     
    115115        $objQuery   = SC_Query_Ex::getSingletonInstance(); 
    116116 
    117         $objQuery->setOrder("rank DESC"); 
    118         $arrKiyaku  = $objQuery->select("kiyaku_title, kiyaku_text", 'dtb_kiyaku', "del_flg <> 1"); 
     117        $objQuery->setOrder('rank DESC'); 
     118        $arrKiyaku  = $objQuery->select('kiyaku_title, kiyaku_text', 'dtb_kiyaku', "del_flg <> 1"); 
    119119 
    120120        return $arrKiyaku; 
Note: See TracChangeset for help on using the changeset viewer.