Ignore:
Timestamp:
2007/03/31 21:59:45 (17 years ago)
Author:
nanasess
Message:

header("Location: 〜") で相対パスが使用されていたのを絶対パスに変更.
data/lib/slib.php に sfGetCurrentUri(boolean) と sfGetCurrentSchema() を追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu/html/mobile/mypage/refusal.php

    r11982 r12039  
    3939 
    4040if (isset($_POST['no'])) { 
    41     header("Location: " . gfAddSessionId("index.php")); 
     41    header("Location: " . gfAddSessionId(sfGetCurrentUri() . "/index.php")); 
    4242    exit; 
    4343} elseif (isset($_POST['complete'])){ 
     
    4949    $objCustomer->EndSession(); 
    5050    //´°Î»¥Ú¡¼¥¸¤Ø 
    51     header("Location: " . gfAddSessionId("refusal_complete.php")); 
     51    header("Location: " . gfAddSessionId(sfGetCurrentUri() . "/refusal_complete.php")); 
    5252    exit; 
    5353} 
Note: See TracChangeset for help on using the changeset viewer.