- Timestamp:
- 2009/06/09 16:38:08 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/comu-ver2/data/class/pages/mypage/LC_Page_Mypage_Favorite.php
r17955 r18069 78 78 SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 79 79 }else { 80 // マイページトップ顧客情報表示用80 // マイページトップ顧客情報表示用 81 81 $this->CustomerName1 = $objCustomer->getvalue('name01'); 82 82 $this->CustomerName2 = $objCustomer->getvalue('name02'); … … 90 90 } 91 91 92 // ページ送り用92 // ページ送り用 93 93 if (isset($_POST['pageno'])) { 94 94 $this->tpl_pageno = htmlspecialchars($_POST['pageno'], ENT_QUOTES, CHAR_CODE); … … 103 103 $where .= ' AND (alldtl.stock_max >= 1 OR alldtl.stock_unlimited_max = 1)'; 104 104 } 105 $order = "create_date DESC"; 105 106 106 107 $arrval = array($objCustomer->getvalue('customer_id')); 107 $order = "product_id DESC"; 108 108 109 // お気に入りの数を取得 109 110 $linemax = $objQuery->count($from, $where, $arrval); 110 111 $this->tpl_linemax = $linemax; … … 120 121 $objQuery->setorder($order); 121 122 122 // お気に入りの取得123 // お気に入りの取得 123 124 $this->arrFavorite = $objQuery->select($col, $from, $where, $arrval); 124 125
Note: See TracChangeset
for help on using the changeset viewer.