Plugin Directory

Changeset 3421777


Ignore:
Timestamp:
12/17/2025 10:54:41 AM (4 weeks ago)
Author:
ManageWP
Message:

version 4.9.26

Location:
worker
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • worker/tags/4.9.26/init.php

    r3379294 r3421777  
    44Plugin URI: https://managewp.com
    55Description: We help you efficiently manage all your WordPress websites. <strong>Updates, backups, 1-click login, migrations, security</strong> and more, on one dashboard. This service comes in two versions: standalone <a href="https://managewp.com">ManageWP</a> service that focuses on website management, and <a href="https://godaddy.com/pro">GoDaddy Pro</a> that includes additional tools for hosting, client management, lead generation, and more.
    6 Version: 4.9.25
     6Version: 4.9.26
    77Author: GoDaddy
    88Author URI: https://godaddy.com
     
    576576        register_activation_hook(__FILE__, 'mwp_activation_hook');
    577577
    578         $GLOBALS['MMB_WORKER_VERSION']  = '4.9.25';
    579         $GLOBALS['MMB_WORKER_REVISION'] = '2025-10-16 00:00:00';
     578        $GLOBALS['MMB_WORKER_VERSION']  = '4.9.26';
     579        $GLOBALS['MMB_WORKER_REVISION'] = '2025-12-17 00:00:00';
    580580
    581581        // Ensure PHP version compatibility.
  • worker/tags/4.9.26/readme.txt

    r3379294 r3421777  
    44Requires at least: 3.1
    55Tested up to: 6.8
    6 Stable tag: 4.9.25
     6Stable tag: 4.9.26
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    5656
    5757== Changelog ==
     58
     59= 4.9.26 =
     60- Fix: Hit counter check for ManageWP connection
    5861
    5962= 4.9.25 =
  • worker/tags/4.9.26/src/MWP/EventListener/PublicRequest/SetHitCounter.php

    r2894123 r3421777  
    9090        }
    9191
     92        if (!$this->isConnectedToManageWP()) {
     93            return;
     94        }
     95
    9296        if ($this->isBlacklisted($request)) {
    9397            return;
     
    155159        return $this->context->optionGet('disabled_hit_count');
    156160    }
     161
     162    /**
     163     * Check if the site is connected to ManageWP.
     164     *
     165     * @return bool
     166     */
     167    private function isConnectedToManageWP()
     168    {
     169        $communicationKey = mwp_get_communication_key();
     170
     171        return !empty($communicationKey);
     172    }
    157173}
  • worker/tags/4.9.26/version

    r3379294 r3421777  
    1 4.9.25
     14.9.26
  • worker/trunk/init.php

    r3379294 r3421777  
    44Plugin URI: https://managewp.com
    55Description: We help you efficiently manage all your WordPress websites. <strong>Updates, backups, 1-click login, migrations, security</strong> and more, on one dashboard. This service comes in two versions: standalone <a href="https://managewp.com">ManageWP</a> service that focuses on website management, and <a href="https://godaddy.com/pro">GoDaddy Pro</a> that includes additional tools for hosting, client management, lead generation, and more.
    6 Version: 4.9.25
     6Version: 4.9.26
    77Author: GoDaddy
    88Author URI: https://godaddy.com
     
    576576        register_activation_hook(__FILE__, 'mwp_activation_hook');
    577577
    578         $GLOBALS['MMB_WORKER_VERSION']  = '4.9.25';
    579         $GLOBALS['MMB_WORKER_REVISION'] = '2025-10-16 00:00:00';
     578        $GLOBALS['MMB_WORKER_VERSION']  = '4.9.26';
     579        $GLOBALS['MMB_WORKER_REVISION'] = '2025-12-17 00:00:00';
    580580
    581581        // Ensure PHP version compatibility.
  • worker/trunk/readme.txt

    r3379294 r3421777  
    44Requires at least: 3.1
    55Tested up to: 6.8
    6 Stable tag: 4.9.25
     6Stable tag: 4.9.26
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    5656
    5757== Changelog ==
     58
     59= 4.9.26 =
     60- Fix: Hit counter check for ManageWP connection
    5861
    5962= 4.9.25 =
  • worker/trunk/src/MWP/EventListener/PublicRequest/SetHitCounter.php

    r2894123 r3421777  
    9090        }
    9191
     92        if (!$this->isConnectedToManageWP()) {
     93            return;
     94        }
     95
    9296        if ($this->isBlacklisted($request)) {
    9397            return;
     
    155159        return $this->context->optionGet('disabled_hit_count');
    156160    }
     161
     162    /**
     163     * Check if the site is connected to ManageWP.
     164     *
     165     * @return bool
     166     */
     167    private function isConnectedToManageWP()
     168    {
     169        $communicationKey = mwp_get_communication_key();
     170
     171        return !empty($communicationKey);
     172    }
    157173}
  • worker/trunk/version

    r3379294 r3421777  
    1 4.9.25
     14.9.26
Note: See TracChangeset for help on using the changeset viewer.