Changeset 16364


Ignore:
Timestamp:
2007/10/10 12:30:42 (17 years ago)
Author:
nanasess
Message:

デグレ修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/SC_Customer.php

    r16230 r16364  
    147147     */ 
    148148    function updateEmailMobile() { 
     149 
     150        $objMobile = new SC_Helper_Mobile_Ex(); 
    149151        // すでに email_mobile に値が入っている場合は何もしない。 
    150152        if ($this->customer_data['email_mobile'] != '') { 
     
    153155 
    154156        // email が携帯のメールアドレスではない場合は何もしない。 
    155         if (!gfIsMobileMailAddress($this->customer_data['email'])) { 
     157        if (!$objMobile->gfIsMobileMailAddress($this->customer_data['email'])) { 
    156158            return; 
    157159        } 
Note: See TracChangeset for help on using the changeset viewer.