Changeset 2713969
- Timestamp:
- 04/24/2022 01:53:34 PM (4 years ago)
- Location:
- etsy-shop
- Files:
-
- 2 edited
-
tags/3.0.1/etsy-shop.php (modified) (1 diff)
-
trunk/etsy-shop.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
etsy-shop/tags/3.0.1/etsy-shop.php
r2713967 r2713969 165 165 } 166 166 167 if ($result->price->divisor > 0) { 168 $price = $result->price->amount/$result->price->divisor; 169 } else { 170 $price = $result->price->amount; 171 } 172 167 173 $listing_html = etsy_shop_generateListing( 168 174 $result->listing_id, 169 175 $title, 170 176 $result->state, 171 $ result->price->amount/$result->price->divisor,177 $price, 172 178 $result->price->currency_code, 173 179 $result->quantity, -
etsy-shop/trunk/etsy-shop.php
r2713967 r2713969 165 165 } 166 166 167 if ($result->price->divisor > 0) { 168 $price = $result->price->amount/$result->price->divisor; 169 } else { 170 $price = $result->price->amount; 171 } 172 167 173 $listing_html = etsy_shop_generateListing( 168 174 $result->listing_id, 169 175 $title, 170 176 $result->state, 171 $ result->price->amount/$result->price->divisor,177 $price, 172 178 $result->price->currency_code, 173 179 $result->quantity,
Note: See TracChangeset
for help on using the changeset viewer.