Ignore:
Timestamp:
2011/07/04 13:35:35 (13 years ago)
Author:
Seasoft
Message:

#1373 (require_safe.php で設定している HTML_REALDIR が誤っている)

  • require.php に依存させる事で解決。

#1392 (モバイルサイトの判別に SC_Display_Ex#detectDevice を使う)
#1393 (require_safe.php で絵文字変換 (除去) フィルターの組み込み条件が誤っている)

  • require.php に依存させる事で解決。
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/class/SC_Customer.php

    r20970 r21010  
    232232                // モバイルサイトの場合は携帯のメールアドレスが登録されていることもチェックする。 
    233233                // ただし $dont_check_email_mobile が true の場合はチェックしない。 
    234                 if (defined('MOBILE_SITE') && !$dont_check_email_mobile) { 
     234                if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE && !$dont_check_email_mobile) { 
    235235                    $email_mobile = $objQuery->get("email_mobile", "dtb_customer", "customer_id = ?", array($_SESSION['customer']['customer_id'])); 
    236236                    return isset($email_mobile); 
Note: See TracChangeset for help on using the changeset viewer.