Ignore:
Timestamp:
2011/01/17 14:53:52 (16 years ago)
Author:
Seasoft
Message:

#834(パラメータの定数名に「URL」を含むにもかかわらず、パスのみのものがある)

  • パラメータサフィックスの変更 *_URL_PATH → *_URLPATH
Location:
branches/version-2_5-dev/data/class/helper
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/helper/SC_Helper_Mobile.php

    r19833 r19943  
    197197            } else { 
    198198                // GET 以外の場合はトップページへリダイレクトする。 
    199                 header('Location: ' . TOP_URL_PATH . '?' . SID); 
     199                header('Location: ' . TOP_URLPATH . '?' . SID); 
    200200            } 
    201201            exit; 
  • branches/version-2_5-dev/data/class/helper/SC_Helper_Purchase.php

    r19928 r19943  
    122122                // カート情報表示に強制移動する 
    123123                if (Net_UserAgent_Mobile::isMobile()) { 
    124                     header("Location: ". MOBILE_CART_URL_PATH 
     124                    header("Location: ". MOBILE_CART_URLPATH 
    125125                           . "?" . session_name() . "=" . session_id()); 
    126126                } else { 
    127                     header("Location: ".CART_URL_PATH); 
     127                    header("Location: ".CART_URLPATH); 
    128128                } 
    129129                exit; 
Note: See TracChangeset for help on using the changeset viewer.