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/admin/contents/csv_sql.php

    r11730 r12039  
    8181    // ¿·µ¬ºîÀ® 
    8282    case "new_page": 
    83         header("location: ./csv_sql.php"); 
     83        header("location: " . sfGetCurrentUri() . "/csv_sql.php"); 
    8484        break; 
    8585         
     
    8787    case "delete": 
    8888        lfDelData($sql_id); 
    89         header("location: ./csv_sql.php"); 
     89        header("location: " . sfGetCurrentUri() . "/csv_sql.php"); 
    9090        break; 
    9191         
Note: See TracChangeset for help on using the changeset viewer.