Changeset 15404


Ignore:
Timestamp:
2007/08/29 11:32:52 (17 years ago)
Author:
nanasess
Message:

PHP4 & PHP5 対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/products/LC_Page_Products_List.php

    r15365 r15404  
    111111 
    112112            // 商品一覧の表示処理 
    113             $this = $this->lfDispProductsList($category_id, $_GET['name'], $this->disp_number, $_POST['orderby']); 
     113            $this->lfDispProductsList($category_id, $_GET['name'], $this->disp_number, $_POST['orderby']); 
    114114 
    115115            // 検索条件を画面に表示 
     
    132132        // レイアウトデザインを取得 
    133133        $layout = new SC_Helper_PageLayout_Ex(); 
    134         $this = $layout->sfGetPageLayout($this, false, "products/list.php"); 
     134        $layout->sfGetPageLayout($this, false, "products/list.php"); 
    135135 
    136136        if(isset($_POST['mode']) && $_POST['mode'] == "cart" 
     
    270270        if($disp_num == 15) { 
    271271            for($i = 0; $i < count($this->arrProducts); $i++) { 
    272                 $this = $this->lfMakeSelect($this->arrProducts[$i]['product_id'], $arrClassName, $arrClassCatName); 
     272                $this->lfMakeSelect($this->arrProducts[$i]['product_id'], $arrClassName, $arrClassCatName); 
    273273                // 購入制限数を取得 
    274                 $this = $this->lfGetSaleLimit($this->arrProducts[$i]); 
     274                $this->lfGetSaleLimit($this->arrProducts[$i]); 
    275275            } 
    276276        } 
     
    409409        $this->tpl_classcat_find2[$product_id] = $classcat_find2; 
    410410        $this->tpl_stock_find[$product_id] = $stock_find; 
    411  
    412         return $this; 
    413     } 
     411    } 
     412 
    414413    /* 商品規格情報の取得 */ 
    415414    function lfGetProductsClass($product_id) { 
     
    456455            $this->tpl_sale_limit[$product['product_id']] = $product['sale_limit']; 
    457456        } 
    458  
    459         return $this; 
    460457    } 
    461458 
Note: See TracChangeset for help on using the changeset viewer.