Changeset 3421777
- Timestamp:
- 12/17/2025 10:54:41 AM (4 weeks ago)
- Location:
- worker
- Files:
-
- 8 edited
- 1 copied
-
tags/4.9.26 (copied) (copied from worker/trunk)
-
tags/4.9.26/init.php (modified) (2 diffs)
-
tags/4.9.26/readme.txt (modified) (2 diffs)
-
tags/4.9.26/src/MWP/EventListener/PublicRequest/SetHitCounter.php (modified) (2 diffs)
-
tags/4.9.26/version (modified) (1 diff)
-
trunk/init.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/MWP/EventListener/PublicRequest/SetHitCounter.php (modified) (2 diffs)
-
trunk/version (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
worker/tags/4.9.26/init.php
r3379294 r3421777 4 4 Plugin URI: https://managewp.com 5 5 Description: 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.2 56 Version: 4.9.26 7 7 Author: GoDaddy 8 8 Author URI: https://godaddy.com … … 576 576 register_activation_hook(__FILE__, 'mwp_activation_hook'); 577 577 578 $GLOBALS['MMB_WORKER_VERSION'] = '4.9.2 5';579 $GLOBALS['MMB_WORKER_REVISION'] = '2025-1 0-1600:00:00';578 $GLOBALS['MMB_WORKER_VERSION'] = '4.9.26'; 579 $GLOBALS['MMB_WORKER_REVISION'] = '2025-12-17 00:00:00'; 580 580 581 581 // Ensure PHP version compatibility. -
worker/tags/4.9.26/readme.txt
r3379294 r3421777 4 4 Requires at least: 3.1 5 5 Tested up to: 6.8 6 Stable tag: 4.9.2 56 Stable tag: 4.9.26 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html … … 56 56 57 57 == Changelog == 58 59 = 4.9.26 = 60 - Fix: Hit counter check for ManageWP connection 58 61 59 62 = 4.9.25 = -
worker/tags/4.9.26/src/MWP/EventListener/PublicRequest/SetHitCounter.php
r2894123 r3421777 90 90 } 91 91 92 if (!$this->isConnectedToManageWP()) { 93 return; 94 } 95 92 96 if ($this->isBlacklisted($request)) { 93 97 return; … … 155 159 return $this->context->optionGet('disabled_hit_count'); 156 160 } 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 } 157 173 } -
worker/tags/4.9.26/version
r3379294 r3421777 1 4.9.2 51 4.9.26 -
worker/trunk/init.php
r3379294 r3421777 4 4 Plugin URI: https://managewp.com 5 5 Description: 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.2 56 Version: 4.9.26 7 7 Author: GoDaddy 8 8 Author URI: https://godaddy.com … … 576 576 register_activation_hook(__FILE__, 'mwp_activation_hook'); 577 577 578 $GLOBALS['MMB_WORKER_VERSION'] = '4.9.2 5';579 $GLOBALS['MMB_WORKER_REVISION'] = '2025-1 0-1600:00:00';578 $GLOBALS['MMB_WORKER_VERSION'] = '4.9.26'; 579 $GLOBALS['MMB_WORKER_REVISION'] = '2025-12-17 00:00:00'; 580 580 581 581 // Ensure PHP version compatibility. -
worker/trunk/readme.txt
r3379294 r3421777 4 4 Requires at least: 3.1 5 5 Tested up to: 6.8 6 Stable tag: 4.9.2 56 Stable tag: 4.9.26 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html … … 56 56 57 57 == Changelog == 58 59 = 4.9.26 = 60 - Fix: Hit counter check for ManageWP connection 58 61 59 62 = 4.9.25 = -
worker/trunk/src/MWP/EventListener/PublicRequest/SetHitCounter.php
r2894123 r3421777 90 90 } 91 91 92 if (!$this->isConnectedToManageWP()) { 93 return; 94 } 95 92 96 if ($this->isBlacklisted($request)) { 93 97 return; … … 155 159 return $this->context->optionGet('disabled_hit_count'); 156 160 } 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 } 157 173 } -
worker/trunk/version
r3379294 r3421777 1 4.9.2 51 4.9.26
Note: See TracChangeset
for help on using the changeset viewer.