Ignore:
Timestamp:
2009/03/19 12:38:33 (15 years ago)
Author:
Seasoft
Message:

merge 17726
・取得元: version-2
【取得元のログメッセージ】
#371 支払方法設定で、Warning: array_merge() のエラーの修正。 ファイルのアップロード時のエラーチェックなのでエラー用の変数は配列じゃなくても問題ないと思います。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/admin/basis/LC_Page_Admin_Basis_Payment_Input.php

    r17546 r17911  
    104104        case 'upload_image': 
    105105            // ファイル存在チェック 
    106             $this->arrErr = array_merge($this->arrErr, $this->objUpFile->checkEXISTS($_POST['image_key'])); 
     106            $this->arrErr = $this->objUpFile->checkEXISTS($_POST['image_key']); 
    107107            // 画像保存処理 
    108108            $this->arrErr[$_POST['image_key']] = $this->objUpFile->makeTempFile($_POST['image_key']); 
Note: See TracChangeset for help on using the changeset viewer.