Ignore:
Timestamp:
2011/04/01 19:49:23 (13 years ago)
Author:
shutta
Message:

refs #1234 モバイル>携帯メールアドレスを登録しているのに、カートから「注文する」でログインすると、携帯メール登録画面が表示される
携帯メールアドレスチェックの判定が逆になっていたのを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/class/pages/shopping/LC_Page_Shopping.php

    r20764 r20805  
    500500    function hasEmailMobile(&$objCustomer) { 
    501501        $objMobile = new SC_Helper_Mobile_Ex(); 
    502         if (!$objMobile->gfIsMobileMailAddress($objCustomer->getValue('email'))) { 
     502        if ($objMobile->gfIsMobileMailAddress($objCustomer->getValue('email'))) { 
    503503            if ($objCustomer->hasValue('email_mobile')) { 
    504504                return true; 
Note: See TracChangeset for help on using the changeset viewer.