Changeset 2901813
- Timestamp:
- 04/20/2023 12:52:26 PM (3 years ago)
- Location:
- moloni-es/trunk
- Files:
-
- 5 edited
-
README.md (modified) (2 diffs)
-
moloni_es.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/Controllers/Product.php (modified) (1 diff)
-
src/Curl.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
moloni-es/trunk/README.md
r2901783 r2901813 16 16 **Tested up to:** 6.2 17 17 **WC tested up to** 7.5.1 18 **Stable tag:** 1.0.4 218 **Stable tag:** 1.0.43 19 19 **License:** GPLv2 or later 20 20 **License URI:** [https://www.gnu.org/licenses/gpl-2.0.html](https://www.gnu.org/licenses/gpl-2.0.html) … … 72 72 ## Changelog 73 73 74 ### 1.0.43 75 * Fix image syncronization 76 74 77 ### 1.0.42 75 78 * Tested up to version 6.2.0 of WordPress -
moloni-es/trunk/moloni_es.php
r2901783 r2901813 4 4 * Plugin Name: Moloni España 5 5 * Description: Simple invoicing integration with Moloni ES 6 * Version: 1.0.4 26 * Version: 1.0.43 7 7 * Tested up to: 6.2 8 8 * WC tested up to: 7.5.1 -
moloni-es/trunk/readme.txt
r2901783 r2901813 3 3 Contributors: Moloni 4 4 Tags: Invoicing, Orders 5 Stable tag: 1.0.4 25 Stable tag: 1.0.43 6 6 Tested up to: 6.2 7 7 WC tested up to: 7.5.1 … … 68 68 69 69 == Changelog == 70 = 1.0.43 = 71 * Fix image syncronization 72 70 73 = 1.0.42 = 71 74 * Tested up to version 6.2.0 of WordPress -
moloni-es/trunk/src/Controllers/Product.php
r2860677 r2901813 579 579 private function shouldSyncImages() 580 580 { 581 return !empty($this->image) && defined('SYNC_ IMAGES') && (int)SYNC_IMAGES=== 1;581 return !empty($this->image) && defined('SYNC_FIELDS_IMAGE') && (int)SYNC_FIELDS_IMAGE === 1; 582 582 } 583 583 -
moloni-es/trunk/src/Curl.php
r2860677 r2901813 154 154 $boundary = 'MOLONIRULES'; 155 155 $query = str_replace(["\n", "\r"], '', $query); 156 157 if (Storage::$MOLONI_ES_COMPANY_ID) { 158 $variables['companyId'] = Storage::$MOLONI_ES_COMPANY_ID; 159 } 156 160 157 161 $data = [
Note: See TracChangeset
for help on using the changeset viewer.