Changeset 3397138
- Timestamp:
- 11/17/2025 11:11:08 AM (5 months ago)
- Location:
- smartling-connector/trunk
- Files:
-
- 3 edited
-
inc/Smartling/Jobs/UploadJob.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
smartling-connector.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
smartling-connector/trunk/inc/Smartling/Jobs/UploadJob.php
r3347982 r3397138 111 111 { 112 112 while (($submission = $this->submissionManager->findSubmissionForCloning($blogId)) !== null) { 113 do_action(ExportedAPI::ACTION_SMARTLING_CLONE_CONTENT, $submission); 113 try { 114 do_action(ExportedAPI::ACTION_SMARTLING_CLONE_CONTENT, $submission); 115 } catch (\Throwable $e) { 116 $this->submissionManager->setErrorMessage($submission, $e->getMessage()); 117 continue; 118 } 114 119 $this->placeLockFlag(true); 115 120 } -
smartling-connector/trunk/readme.txt
r3393007 r3397138 5 5 Tested up to: 6.6.2 6 6 Requires PHP: 8.0 7 Stable tag: 5.0. 07 Stable tag: 5.0.1 8 8 License: GPLv2 or later 9 9 … … 63 63 64 64 == Changelog == 65 = 5.0.1 = 66 * Fixed issue where an exception during submission cloning would prevent the cloning queue from processing other items 67 65 68 = 5.0.0 = 66 69 * Added Related assets UI to allow precise control over related content submission from the widget -
smartling-connector/trunk/smartling-connector.php
r3393007 r3397138 12 12 * Plugin URI: https://www.smartling.com/products/automate/integrations/wordpress/ 13 13 * Description: Integrate your WordPress site with Smartling to upload your content and download translations. 14 * Version: 5.0. 014 * Version: 5.0.1 15 15 * Author: Smartling 16 16 * Author URI: https://www.smartling.com
Note: See TracChangeset
for help on using the changeset viewer.