Ignore:
Timestamp:
2011/02/03 18:37:07 (13 years ago)
Author:
kimoto
Message:

lfPassLenという関数がSC_Utilsにあったので命名規則にあわせて修正 #700

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_Customer.php

    • Property svn:executable set to *
    r20065 r20075  
    133133                $this->tpl_mainpage = 'customer/customer_confirm.tpl'; // 確認ページ 
    134134                $passlen = strlen($this->arrForm['password']); 
    135                 $this->passlen = $this->lfPassLen($passlen); 
     135                $this->passlen = SC_Utils_Ex::sfPassLen($passlen); 
    136136            } else { 
    137137                foreach($this->arrForm as $key => $val) { 
     
    285285    } 
    286286 
    287  
    288     //確認ページ用パスワード表示用 
    289     function lfPassLen($passlen){ 
    290         $ret = ""; 
    291         for ($i=0;$i<$passlen;true){ 
    292             $ret.="*"; 
    293             $i++; 
    294         } 
    295         return $ret; 
    296     } 
    297  
    298287} 
    299288?> 
Note: See TracChangeset for help on using the changeset viewer.