diff --git a/htdocs/admin/dolistore/class/PSWebServiceLibrary.class.php b/htdocs/admin/dolistore/class/PSWebServiceLibrary.class.php index 49850bb1d2b..647d68820e6 100644 --- a/htdocs/admin/dolistore/class/PSWebServiceLibrary.class.php +++ b/htdocs/admin/dolistore/class/PSWebServiceLibrary.class.php @@ -170,7 +170,7 @@ class PrestaShopWebservice * * @throws PrestaShopWebserviceException */ - protected function executeRequest($url, $curl_params = array()) + public function executeRequest($url, $curl_params = array()) { $defaultParams = $this->getCurlDefaultParams(); diff --git a/htdocs/admin/dolistore/class/README.md b/htdocs/admin/dolistore/class/README.md index b0f57af00e7..c4c8110e732 100644 --- a/htdocs/admin/dolistore/class/README.md +++ b/htdocs/admin/dolistore/class/README.md @@ -4,9 +4,13 @@ Source updated from: https://github.com/PrestaShop/PrestaShop-webservice-lib/blob/master/PSWebServiceLibrary.php -## Compatibility analysis +## License compatibility analysis https://www.gnu.org/licenses/license-list.html#OSL +## Local changes + +- Change `executeRequest` to public method because + `htdocs/admin/dolistore/ajax/image.php#` uses it.