Ignore:
Timestamp:
2012/06/20 19:16:48 (12 years ago)
Author:
pineray
Message:

#1726 モバイルサイト 商品名検索のページングで検索条件が引き継がれない

キーワードをURLエンコーディング.

File:
1 edited

Legend:

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

    r21932 r21933  
    126126        // モバイルの場合に検索条件をURLの引数に追加 
    127127        if (SC_Display_Ex::detectDevice() === DEVICE_TYPE_MOBILE) { 
    128             $urlParam .= "&mode={$this->mode}&name={$this->arrSearchData['name']}&orderby={$this->orderby}"; 
     128            $urlParam .= "&mode={$this->mode}&name=" . urlencode($this->arrSearchData['name']) . "&orderby={$this->orderby}"; 
    129129        } 
    130130        $this->objNavi      = new SC_PageNavi_Ex($this->tpl_pageno, $this->tpl_linemax, $this->disp_number, 'fnNaviPage', NAVI_PMAX, $urlParam, SC_Display_Ex::detectDevice() !== DEVICE_TYPE_MOBILE); 
Note: See TracChangeset for help on using the changeset viewer.