Changeset 3250906
- Timestamp:
- 03/05/2025 08:10:54 AM (12 months ago)
- Location:
- kiotvietsync/trunk
- Files:
-
- 5 edited
-
admin/views/options.php (modified) (1 diff)
-
includes/class-kiotviet-sync.php (modified) (1 diff)
-
includes/services/class-kiotviet-sync-services-categories.php (modified) (1 diff)
-
kiotviet-sync.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kiotvietsync/trunk/admin/views/options.php
r3160186 r3250906 17 17 18 18 if(!empty($_POST['kv_timeautosyncorder'])) { 19 update_option('kv_timeautosyncorder', $_POST['kv_timeautosyncorder']);19 update_option('kv_timeautosyncorder', intval($_POST['kv_timeautosyncorder'])); 20 20 } 21 21 -
kiotvietsync/trunk/includes/class-kiotviet-sync.php
r3197053 r3250906 25 25 $this->version = KIOTVIET_PLUGIN_VERSION; 26 26 } else { 27 $this->version = '1.8. 3';27 $this->version = '1.8.4'; 28 28 } 29 29 -
kiotvietsync/trunk/includes/services/class-kiotviet-sync-services-categories.php
r2755397 r3250906 48 48 49 49 foreach ($categories as $category) { 50 $categoryKvId[] = $category['categoryKvId'];50 $categoryKvId[] = intval($category['categoryKvId']); 51 51 } 52 52 53 53 $categoryMap = $this->getCategoryIdMap($categoryKvId); 54 54 foreach ($categories as $category) { 55 if (empty($categoryMap[ $category["categoryKvId"]])) {55 if (empty($categoryMap[intval($category["categoryKvId"])])) { 56 56 $category_id = $this->KiotvietWcCategory->add_category($category); 57 57 if (!is_wp_error($category_id)) { 58 58 $insert = [ 59 59 'category_id' => $category_id, 60 'category_kv_id' => $category["categoryKvId"],60 'category_kv_id' => intval($category["categoryKvId"]), 61 61 'data_raw' => $category["dataRaw"], 62 62 'retailer' => $this->retailer, -
kiotvietsync/trunk/kiotviet-sync.php
r3197053 r3250906 7 7 * Plugin URI: https://kiotviet.vn 8 8 * Description: Plugin hỗ trợ đồng bộ sản phẩm, đơn hàng giữa website Wordpress với KiotViet. 9 * Version: 1.8. 39 * Version: 1.8.4 10 10 * Author: KiotViet 11 11 * Author URI: https://kiotviet.vn … … 24 24 define('KIOTVIET_PLUGIN_PATH', plugin_dir_path( __FILE__ )); 25 25 define('KIOTVIET_PLUGIN_URL', plugin_dir_url( __FILE__ )); 26 define('KIOTVIET_PLUGIN_VERSION', '1.8. 3');26 define('KIOTVIET_PLUGIN_VERSION', '1.8.4'); 27 27 28 28 include_once "bootstrap.php"; -
kiotvietsync/trunk/readme.txt
r3197053 r3250906 54 54 55 55 == Changelog == 56 = 1.8.4 = 57 * 05/03/2025 58 * CVSS: SQLi N XSSi 56 59 = 1.8.3 = 57 60 * 26/11/2024
Note: See TracChangeset
for help on using the changeset viewer.