Ignore:
Timestamp:
2012/06/15 13:59:22 (12 years ago)
Author:
shutta
Message:

#1869 (ファイル管理> PHP5.4環境下でシステムエラー)

File:
1 edited

Legend:

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

    r21867 r21922  
    284284     * テンプレートに渡す値を整形する 
    285285     * 
    286      * @param array $_POST $_POST 
     286     * @param array $arrVal $_POST 
    287287     * @return array $setParam テンプレートに渡す値 
    288288     */ 
    289     function createSetParam($_POST) { 
    290         $setParam = $_POST; 
     289    function createSetParam($arrVal) { 
     290        $setParam = $arrVal; 
    291291        // Windowsの場合は, ディレクトリの区切り文字を\から/に変換する 
    292292        $setParam['top_dir'] = (strpos(PHP_OS, 'WIN') === false) ? USER_REALDIR : str_replace('\\', '/', USER_REALDIR); 
Note: See TracChangeset for help on using the changeset viewer.