Ignore:
Timestamp:
2007/02/28 16:17:07 (17 years ago)
Author:
inoue
Message:

モバイル版EC-CUBE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/downloads/module/mdl_epsilon/card.php

    r17 r11460  
    6767 
    6868    // ´°Î»²èÌ̤ؠ
    69     header("Location: " .  URL_SHOP_COMPLETE); 
     69    if (GC_MobileUserAgent::isMobile()) { 
     70        header("Location: " .  gfAddSessionId(URL_SHOP_COMPLETE)); 
     71    } else { 
     72        header("Location: " .  URL_SHOP_COMPLETE); 
     73    } 
    7074} 
    7175 
     
    124128        $objSiteSess->setRegistFlag(); 
    125129         
     130        // ·ÈÂÓüËö¤Î¾ì¹ç¤Ï¡¢¥»¥Ã¥·¥ç¥óID¡¦¥ª¡¼¥À¡¼Èֹ桦Ìá¤Ã¤Æ¤¯¤ëURL¤òÊݸ¤·¤Æ¤ª¤¯¡£ 
     131        if (GC_MobileUserAgent::isMobile()) { 
     132            sfMobileSetExtSessionId('order_number', $arrData['order_id'], 'shopping/load_payment_module.php'); 
     133            sfMobileSetExtSessionId('order_number', $arrData['order_id'], 'shopping/confirm.php'); 
     134        } 
     135 
    126136        $url = sfGetXMLValue($arrXML,'RESULT','REDIRECT'); 
    127137        header("Location: " . $url); 
Note: See TracChangeset for help on using the changeset viewer.