Changeset 17038


Ignore:
Timestamp:
2008/02/08 16:21:33 (16 years ago)
Author:
adachi
Message:

3Dセキュア時に通常のカードがエラーになる不具合を修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-1/data/downloads/module/mdl_gmo-pg/gmo-pg_credit.php

    r16921 r17038  
    136136    if (!$access_err && !$credit_err) { 
    137137        // 3D¥»¥­¥å¥¢¤¬Í­¸ú¤Ê¾ì¹ç¤Ï¥ê¥À¥¤¥ì¥¯¥È¥Ú¡¼¥¸¤ò½ÐÎϤ¹¤ë 
    138         if (lfEnable3D()) { 
     138        if (lfEnable3D() && isset($arrExecRet['ACSUrl'])) { 
    139139            gfPrintLog('-> 3D secure is enable.', GMO_LOG_PATH); 
    140140            $_SESSION['GMO']['3d']['memo'] = array( 
     
    428428function lfParseExecResponse($queryString) { 
    429429    // 3D¥»¥­¥å¥¢¤Ç¤Ê¤¤¾ì¹ç¤ÏlfGetPostArray()¤Çparse¤¹¤ë 
    430     if (!lfEnable3D()) { 
    431         return lfGetPostArray($queryString); 
     430    $arrRet = lfGetPostArray($queryString); 
     431    if (empty($arrRet['ACSUrl'])) { 
     432        return $arrRet; 
    432433    } 
    433434 
Note: See TracChangeset for help on using the changeset viewer.