Ignore:
Timestamp:
2009/09/22 03:39:46 (15 years ago)
Author:
Seasoft
Message:

merge r18152
・取得元: version-2_4

  • インデントを修正(2SP → 4SP)

【取得元のログメッセージ】

  • #495 レビュー管理にて、登録URLの削除ができない不具合 を修正
File:
1 edited

Legend:

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

    r18234 r18310  
    9191                    array("column" => "sex", "convert" => "n") 
    9292                ); 
    93                  
     93 
    9494                // フォーム値の変換 
    9595                $arrReview = $this->lfConvertParam($_POST, $arrRegistColumn); 
     
    105105                    // レビュー情報の更新 
    106106                    $this->lfRegistReviewData($arrReview, $arrRegistColumn); 
    107                      
     107 
    108108                    // レビュー情報のDB取得 
    109109                    $this->arrReview = $this->lfGetReviewData($arrReview['review_id']); 
    110                      
     110 
    111111                    $this->tpl_onload = "alert('登録が完了しました。');"; 
    112112                } 
    113113                break; 
    114              
     114 
    115115            default: 
    116116                // レビュー情報のDB取得 
     
    131131        parent::destroy(); 
    132132    } 
    133  
    134133 
    135134    /** 
     
    187186        $where = "A.del_flg = 0 AND B.del_flg = 0 AND review_id = ? "; 
    188187        $arrReview = $this->objQuery->select($select, $from, $where, array($review_id)); 
    189          
    190188        if (empty($arrReview)) { 
    191189            SC_Utils_Ex::sfDispError(""); 
    192190        } 
    193          
     191 
    194192        return $arrReview[0]; 
    195193    } 
     
    204202        } 
    205203        $arrRegist['update_date'] = 'now()'; 
    206          
     204 
    207205        // 更新実行 
    208206        $this->objQuery->update("dtb_review", $arrRegist, "review_id = ?", array($arrReview['review_id'])); 
Note: See TracChangeset for help on using the changeset viewer.