Ignore:
Timestamp:
2008/12/03 18:28:44 (15 years ago)
Author:
nakanishi
Message:

#371
支払方法設定で、Warning: array_merge() のエラーの修正。
ファイルのアップロード時のエラーチェックなのでエラー用の変数は配列じゃなくても問題ないと思います。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2/data/class/pages/admin/basis/LC_Page_Admin_Basis_Payment_Input.php

    r16741 r17726  
    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.