Changeset 16364
- Timestamp:
- 2007/10/10 12:30:42 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/SC_Customer.php
r16230 r16364 147 147 */ 148 148 function updateEmailMobile() { 149 150 $objMobile = new SC_Helper_Mobile_Ex(); 149 151 // すでに email_mobile に値が入っている場合は何もしない。 150 152 if ($this->customer_data['email_mobile'] != '') { … … 153 155 154 156 // email が携帯のメールアドレスではない場合は何もしない。 155 if (! gfIsMobileMailAddress($this->customer_data['email'])) {157 if (!$objMobile->gfIsMobileMailAddress($this->customer_data['email'])) { 156 158 return; 157 159 }
Note: See TracChangeset
for help on using the changeset viewer.