Skip to content

Commit f8a045d

Browse files
New upstream snapshot for PrestaShop webservice lib (#4)
1 parent cf94a7e commit f8a045d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

upstream/PSWebServiceLibrary.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ class PrestaShopWebservice
4444
/** @var string PS version */
4545
protected $version;
4646

47-
/** @var array compatible versions of PrestaShop Webservice */
47+
/** @var string Minimal version of PrestaShop to use with this library */
4848
const psCompatibleVersionsMin = '1.4.0.0';
49+
/** @var string Maximal version of PrestaShop to use with this library */
4950
const psCompatibleVersionsMax = '1.7.99.99';
5051

5152
/**
@@ -343,7 +344,7 @@ public function get($options)
343344
$url .= '/' . $options['id'];
344345
}
345346

346-
$params = array('filter', 'display', 'sort', 'limit', 'id_shop', 'id_group_shop', 'schema', 'language', 'date');
347+
$params = array('filter', 'display', 'sort', 'limit', 'id_shop', 'id_group_shop', 'schema', 'language', 'date', 'price');
347348
foreach ($params as $p) {
348349
foreach ($options as $k => $o) {
349350
if (strpos($k, $p) !== false) {

0 commit comments

Comments
 (0)