Changeset 20338


Ignore:
Timestamp:
2011/02/23 12:30:10 (13 years ago)
Author:
shutta
Message:

refs #1046
ダウンロードの際に、トランザクショントークンをunsetしないようにdoValidToken()をオーバーライド

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_FileManager.php

    r20335 r20338  
    207207 
    208208    /** 
     209     * トランザクショントークンを unset しないようオーバーライド. 
     210     * 
     211     * @return void 
     212    */ 
     213    function doValidToken() { 
     214        if ($_SERVER["REQUEST_METHOD"] == "POST") { 
     215            if (!SC_Helper_Session_Ex::isValidToken(false)) { 
     216                SC_Utils_Ex::sfDispError(INVALID_MOVE_ERRORR); 
     217            } 
     218        } 
     219    } 
     220 
     221    /** 
    209222     * 初期化を行う. 
    210223     * 
Note: See TracChangeset for help on using the changeset viewer.