Ignore:
Timestamp:
2009/06/09 16:38:08 (14 years ago)
Author:
Seasoft
Message:

merge r17931, r17932, r17933
・取得元: version-2_4
【取得元のログメッセージ】

  • お気に入り商品機能
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/mypage/LC_Page_Mypage_Favorite.php

    r17955 r18069  
    7878            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
    7979        }else { 
    80             //マイページトップ顧客情報表示用 
     80            // マイページトップ顧客情報表示用 
    8181            $this->CustomerName1 = $objCustomer->getvalue('name01'); 
    8282            $this->CustomerName2 = $objCustomer->getvalue('name02'); 
     
    9090        } 
    9191 
    92         //ページ送り用 
     92        // ページ送り用 
    9393        if (isset($_POST['pageno'])) { 
    9494            $this->tpl_pageno = htmlspecialchars($_POST['pageno'], ENT_QUOTES, CHAR_CODE); 
     
    103103            $where .= ' AND (alldtl.stock_max >= 1 OR alldtl.stock_unlimited_max = 1)'; 
    104104        } 
     105        $order = "create_date DESC"; 
    105106 
    106107        $arrval = array($objCustomer->getvalue('customer_id')); 
    107         $order = "product_id DESC"; 
    108  
     108 
     109        // お気に入りの数を取得 
    109110        $linemax = $objQuery->count($from, $where, $arrval); 
    110111        $this->tpl_linemax = $linemax; 
     
    120121        $objQuery->setorder($order); 
    121122 
    122         //お気に入りの取得 
     123        // お気に入りの取得 
    123124        $this->arrFavorite = $objQuery->select($col, $from, $where, $arrval); 
    124125 
Note: See TracChangeset for help on using the changeset viewer.