Plugin Directory

Changeset 3351155


Ignore:
Timestamp:
08/27/2025 11:31:36 AM (7 months ago)
Author:
smartling
Message:

Update to v 4.3.2

Location:
smartling-connector/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • smartling-connector/trunk/inc/Smartling/WP/Controller/ConfigurationProfilesController.php

    r3333320 r3351155  
    1212use Smartling\Helpers\SiteHelper;
    1313use Smartling\Helpers\SmartlingUserCapabilities;
     14use Smartling\Helpers\WordpressFunctionProxyHelper;
    1415use Smartling\Jobs\JobAbstract;
    1516use Smartling\Queue\QueueInterface;
     
    3940        private QueueInterface $queue,
    4041        private UploadQueueManager $uploadQueueManager,
     42        private WordpressFunctionProxyHelper $wpProxy,
    4143    ) {
    4244        parent::__construct($connector, $pluginInfo, $settingsManager, $siteHelper, $manager, $cache);
     
    200202                $this->getManager(),
    201203                $this->uploadQueueManager,
     204                $this->wpProxy,
    202205            ),
    203206        ]);
  • smartling-connector/trunk/inc/Smartling/WP/Table/QueueManagerTableWidget.php

    r3340860 r3351155  
    77use Smartling\Exception\EntityNotFoundException;
    88use Smartling\Helpers\HtmlTagGeneratorHelper;
     9use Smartling\Helpers\WordpressFunctionProxyHelper;
    910use Smartling\Jobs\DownloadTranslationJob;
    1011use Smartling\Jobs\JobAbstract;
     
    3738        private SubmissionManager $submissionManager,
    3839        private UploadQueueManager $uploadQueueManager,
     40        private WordpressFunctionProxyHelper $wpProxy,
    3941    )
    4042    {
     
    140142    private function getUploadCronActionCell(?ConfigurationProfileEntity $profile, int $count): string
    141143    {
    142         if ($count === 0 && $this->submissionManager->findSubmissionForCloning() === null) {
     144        if ($count === 0 && $this->submissionManager->findSubmissionForCloning($this->wpProxy->get_current_blog_id()) === null) {
    143145            return self::MESSAGE_NOTHING_TO_DO;
    144146        }
  • smartling-connector/trunk/inc/config/services.yml

    r3338937 r3351155  
    351351      - "@queue.db"
    352352      - "@manager.upload.queue"
     353      - "@wp.proxy"
    353354
    354355  wp.settings.edit:
  • smartling-connector/trunk/readme.txt

    r3347982 r3351155  
    55Tested up to: 6.6.2
    66Requires PHP: 8.0
    7 Stable tag: 4.3.1
     7Stable tag: 4.3.2
    88License: GPLv2 or later
    99
     
    6363
    6464== Changelog ==
     65= 4.3.2 =
     66* Fixed a fatal error on the configuration screen
     67
    6568= 4.3.1 =
    6669* Changed cloning to only work with submissions from the blog that initiates the cron job
     
    7073* Added support for Elementor social icons widget
    7174* Fixed issue where supported elementor content was partially translated
    72 * Fixed fatal error on the Settings page when no configuration profiles are present
     75* Fixed a fatal error on the Settings page when no configuration profiles are present
    7376
    7477= 4.2.0 =
  • smartling-connector/trunk/smartling-connector.php

    r3347982 r3351155  
    1212 * Plugin URI:        https://www.smartling.com/products/automate/integrations/wordpress/
    1313 * Description:       Integrate your WordPress site with Smartling to upload your content and download translations.
    14  * Version:           4.3.1
     14 * Version:           4.3.2
    1515 * Author:            Smartling
    1616 * Author URI:        https://www.smartling.com
Note: See TracChangeset for help on using the changeset viewer.