Ignore:
Timestamp:
2009/03/18 14:35:26 (15 years ago)
Author:
Seasoft
Message:

r17902 の微調整

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/admin/products/LC_Page_Admin_Products_Product.php

    r17902 r17903  
    143143                    $this->arrRecommend = $this->lfPreGetRecommendProducts($_POST['product_id']); 
    144144 
    145                     $this->lfProductPage();        // 商品登録ページ 
     145                    $this->lfProductPage();     // 商品登録ページ 
    146146                } 
    147147                break; 
     
    162162                    $this->lfProductConfirmPage(); // 確認ページ 
    163163                } else { 
    164                     $this->lfProductPage();        // 商品登録ページ 
     164                    $this->lfProductPage();     // 商品登録ページ 
    165165                } 
    166166                break; 
     
    169169                $this->tpl_mainpage = 'products/complete.tpl'; 
    170170 
    171                 $this->arrForm['product_id'] = $this->lfRegistProduct($_POST);        // データ登録 
     171                $this->arrForm['product_id'] = $this->lfRegistProduct($_POST);      // データ登録 
    172172 
    173173                // 件数カウントバッチ実行 
     
    197197                // 確認ページからの戻り 
    198198            case 'confirm_return': 
    199                 $this->lfProductPage();        // 商品登録ページ 
     199                $this->lfProductPage();     // 商品登録ページ 
    200200                break; 
    201201                // 関連商品選択 
    202202            case 'recommend_select' : 
    203                 $this->lfProductPage();        // 商品登録ページ 
     203                $this->lfProductPage();     // 商品登録ページ 
    204204                break; 
    205205            default: 
    206                 $this->lfProductPage();        // 商品登録ページ 
     206                $this->lfProductPage();     // 商品登録ページ 
    207207                break; 
    208208        } 
     
    219219        $sub_find = false; 
    220220        for ($cnt = 1; $cnt <= PRODUCTSUB_MAX; $cnt++) { 
    221             if(    (isset($this->arrForm['sub_title'.$cnt]) 
     221            if( (isset($this->arrForm['sub_title'.$cnt]) 
    222222            && !empty($this->arrForm['sub_title'.$cnt])) || 
    223223            (isset($this->arrForm['sub_comment'.$cnt]) 
     
    471471                    // コピーしない列 
    472472                    unset($arrColList[$arrColList_tmp["product_class_id"]]);     //規格ID 
    473                     unset($arrColList[$arrColList_tmp["product_id"]]);             //商品ID 
     473                    unset($arrColList[$arrColList_tmp["product_id"]]);           //商品ID 
    474474                    unset($arrColList[$arrColList_tmp["create_date"]]); 
    475475 
     
    511511    function lfConvertParam($array) { 
    512512        /* 
    513          *    文字列の変換 
    514          *    K :  「半角(ハンカク)片仮名」を「全角片仮名」に変換 
    515          *    C :  「全角ひら仮名」を「全角かた仮名」に変換 
    516          *    V :  濁点付きの文字を一文字に変換。"K","H"と共に使用します 
    517          *    n :  「全角」数字を「半角(ハンカク)」に変換 
     513         *  文字列の変換 
     514         *  K :  「半角(ハンカク)片仮名」を「全角片仮名」に変換 
     515         *  C :  「全角ひら仮名」を「全角かた仮名」に変換 
     516         *  V :  濁点付きの文字を一文字に変換。"K","H"と共に使用します 
     517         *  n :  「全角」数字を「半角(ハンカク)」に変換 
    518518         */ 
    519519 
Note: See TracChangeset for help on using the changeset viewer.