Changeset 19729 for branches/version-2_5-dev/data/class/SC_Customer.php
- Timestamp:
- 2010/12/16 23:12:59 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/SC_Customer.php
r19547 r19729 181 181 182 182 $objQuery = new SC_Query(); 183 $email = $objQuery->get(" dtb_customer", "email", "customer_id = ?", array($_SESSION['customer']['customer_id']));183 $email = $objQuery->get("email", "dtb_customer", "customer_id = ?", array($_SESSION['customer']['customer_id'])); 184 184 if($email == $_SESSION['customer']['email']) { 185 185 // モバイルサイトの場合は携帯のメールアドレスが登録されていることもチェックする。 186 186 // ただし $dont_check_email_mobile が true の場合はチェックしない。 187 187 if (defined('MOBILE_SITE') && !$dont_check_email_mobile) { 188 $email_mobile = $objQuery->get(" dtb_customer", "email_mobile", "customer_id = ?", array($_SESSION['customer']['customer_id']));188 $email_mobile = $objQuery->get("email_mobile", "dtb_customer", "customer_id = ?", array($_SESSION['customer']['customer_id'])); 189 189 return isset($email_mobile); 190 190 }
Note: See TracChangeset
for help on using the changeset viewer.
