Changeset 20170


Ignore:
Timestamp:
2011/02/15 19:31:00 (12 years ago)
Author:
kotani
Message:

LC_Page_Mypage_Change リファクタリング #981

  • 参照渡しとなっている引数に対して、呼び出し側で参照渡ししないよう修正。
File:
1 edited

Legend:

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

    r20160 r20170  
    404404 
    405405    function sfCustomerOtherDelivErrorCheck(&$objFormParam) { 
    406         $objErr = SC_Helper_Customer_Ex::sfCustomerCommonErrorCheck(&$objFormParam); 
     406        $objErr = SC_Helper_Customer_Ex::sfCustomerCommonErrorCheck($objFormParam); 
    407407        return $objErr->arrErr; 
    408408    } 
     
    416416     */ 
    417417    function sfCustomerEntryErrorCheck(&$objFormParam) { 
    418         $objErr = SC_Helper_Customer_Ex::sfCustomerCommonErrorCheck(&$objFormParam); 
    419         $objErr = SC_Helper_Customer_Ex::sfCustomerRegisterErrorCheck(&$objErr); 
     418        $objErr = SC_Helper_Customer_Ex::sfCustomerCommonErrorCheck($objFormParam); 
     419        $objErr = SC_Helper_Customer_Ex::sfCustomerRegisterErrorCheck($objErr); 
    420420 
    421421        return $objErr->arrErr; 
     
    435435 
    436436        $objErr = SC_Helper_Customer_Ex::sfCustomerCommonErrorCheck($objFormParam); 
    437         $objErr = SC_Helper_Customer_Ex::sfCustomerRegisterErrorCheck(&$objErr); 
     437        $objErr = SC_Helper_Customer_Ex::sfCustomerRegisterErrorCheck($objErr); 
    438438 
    439439        if (isset($objErr->arrErr['password']) && $objFormParam->getValue('password') == DEFAULT_PASSWORD) { 
Note: See TracChangeset for help on using the changeset viewer.