Changeset 22962
- Timestamp:
- 2013/07/13 00:25:28 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/pages/mypage/LC_Page_Mypage_DownLoad.php
r22926 r22962 184 184 $dbFactory = SC_DB_DBFactory_Ex::getInstance(); 185 185 $where = 'o.customer_id = ? AND o.order_id = ? AND pc.product_id = ? AND pc.product_class_id = ?'; 186 $where .= ' AND od.product_id = ? AND od.product_class_id = ?'; 186 187 $where .= ' AND ' . $dbFactory->getDownloadableDaysWhereSql('o'); 187 188 $where .= ' = 1'; 188 189 $arrRet = $objQuery->select($col, $table, $where, 189 array($customer_id, $order_id, $product_id, $product_class_id ));190 array($customer_id, $order_id, $product_id, $product_class_id, $product_id, $product_class_id)); 190 191 191 192 return $arrRet[0];
Note: See TracChangeset
for help on using the changeset viewer.