Changeset 20305


Ignore:
Timestamp:
2011/02/21 19:13:22 (13 years ago)
Author:
kotani
Message:

#1016 ([管理画面]ファイル管理)

  • 変数名の間違いを修正
File:
1 edited

Legend:

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

    r20208 r20305  
    129129            if (SC_Utils_Ex::isBlank($this->arrErr)) { 
    130130                if(is_dir($objFormParam->getValue('select_file'))) { 
    131                     $dispError = "※ ディレクトリをダウンロードすることは出来ません。<br/>"; 
    132                     $this->setDispError('select_file', $dispError); 
     131                    $disp_error = "※ ディレクトリをダウンロードすることは出来ません。<br/>"; 
     132                    $this->setDispError('select_file', $disp_error); 
    133133                } else { 
    134134                    // ファイルダウンロード 
     
    161161                if(!$this->tryCreateDir($objFileManager, $objFormParam)){ 
    162162                    $disp_error = "※ ".htmlspecialchars($objFormParam->getValue('create_file'), ENT_QUOTES)."の作成に失敗しました。<br/>"; 
    163                     $this->setDispError('create_file', $dispError); 
     163                    $this->setDispError('create_file', $disp_error); 
    164164                } else { 
    165165                    $tpl_onload = "alert('フォルダを作成しました。');"; 
Note: See TracChangeset for help on using the changeset viewer.