Ignore:
Timestamp:
2010/02/12 18:46:50 (14 years ago)
Author:
kajiwara
Message:

EC-CUBE Ver2.4.3 分コミット。詳細はこちら( http://www.ec-cube.net/release/detail.php?release_id=210

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/data/class/pages/admin/basis/LC_Page_Admin_Basis_Delivery_Input.php

    r17513 r18562  
    122122 
    123123        for($cnt = 1; $cnt <= DELIVTIME_MAX; $cnt++) { 
    124             $this->objFormParam->addParam("配送時間$cnt", "deliv_time$cnt", STEXT_LEN, "KVa", array("MAX_LENGTH_CHECK")); 
     124            $this->objFormParam->addParam("お届け時間$cnt", "deliv_time$cnt", STEXT_LEN, "KVa", array("MAX_LENGTH_CHECK")); 
    125125        } 
    126126 
     
    157157            $objQuery->update("dtb_deliv", $sqlval, $where, array($deliv_id)); 
    158158 
    159             // 配送時間の登録 
     159            // お届け時間の登録 
    160160            $table = "dtb_delivtime"; 
    161161            $where = "deliv_id = ? AND time_id = ?"; 
     
    216216 
    217217            $sqlval = array(); 
    218             // 配送時間の設定 
     218            // お届け時間の設定 
    219219            for($cnt = 1; $cnt <= DELIVTIME_MAX; $cnt++) { 
    220220                $keyname = "deliv_time$cnt"; 
     
    257257        $arrRet = $objQuery->select($col, $table, $where, array($deliv_id)); 
    258258        $this->objFormParam->setParam($arrRet[0]); 
    259         // 配送時間の取得 
     259        // お届け時間の取得 
    260260        $col = "deliv_time"; 
    261261        $where = "deliv_id = ?  ORDER BY time_id"; 
Note: See TracChangeset for help on using the changeset viewer.