Ignore:
Timestamp:
2011/03/04 19:51:32 (13 years ago)
Author:
shutta
Message:

拡張クラス(/class_extends/)が存在するのに基底クラス(/class/)のメソッドを呼び出している部分を拡張クラスに書き換え。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/products/LC_Page_Products_List.php

    r20463 r20484  
    124124        $this->tpl_linemax = $this->lfGetProductAllNum($arrSearchCondition); 
    125125        $urlParam = "category_id={$this->arrSearchData['category_id']}&pageno=#page#"; 
    126         $this->objNavi = new SC_PageNavi($this->tpl_pageno, $this->tpl_linemax, $this->disp_number, "fnNaviPage", NAVI_PMAX, $urlParam,SC_Display::detectDevice() !== DEVICE_TYPE_MOBILE); 
     126        $this->objNavi = new SC_PageNavi($this->tpl_pageno, $this->tpl_linemax, $this->disp_number, "fnNaviPage", NAVI_PMAX, $urlParam,SC_Display_Ex::detectDevice() !== DEVICE_TYPE_MOBILE); 
    127127        $this->arrProducts = $this->lfGetProductsList($arrSearchCondition,$this->disp_number,$this->objNavi->start_row,$this->tpl_linemax,$objProduct); 
    128128        //商品一覧の表示処理 
     
    177177 
    178178        // ページャ用データ設定(モバイル) 
    179         if (SC_Display::detectDevice() == DEVICE_TYPE_MOBILE) { 
     179        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
    180180            $this->tpl_previous_page = $this->objNavi->arrPagenavi['before']; 
    181181            $this->tpl_next_page =  $this->objNavi->arrPagenavi['next']; 
Note: See TracChangeset for help on using the changeset viewer.