Changeset 3435973
- Timestamp:
- 01/09/2026 02:15:44 PM (2 months ago)
- Location:
- gatey/trunk
- Files:
-
- 3 edited
-
gatey.php (modified) (2 diffs)
-
hub-loader.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gatey/trunk/gatey.php
r3435868 r3435973 7 7 * Tested up to: 6.9 8 8 * Requires PHP: 8.1 9 * Version: 2.0. 69 * Version: 2.0.7 10 10 * Author: Smart Cloud Solutions Inc. 11 11 * Author URI: https://smart-cloud-solutions.com … … 19 19 namespace SmartCloud\WPSuite\Gatey; 20 20 21 const VERSION = '2.0. 6';21 const VERSION = '2.0.7'; 22 22 23 23 if (!defined('ABSPATH')) { -
gatey/trunk/hub-loader.php
r3435868 r3435973 125 125 $owner_exists = file_exists(WP_PLUGIN_DIR . '/' . $owner); 126 126 $owner_is_valid = in_array(WP_PLUGIN_DIR . '/' . $owner, wp_get_active_and_valid_plugins(), true); 127 $owner_inactive = $owner_is_active && (!$owner_is_valid || !$owner_exists);127 $owner_inactive = !$owner_is_active || !$owner_is_valid || !$owner_exists; 128 128 129 129 $owner_version_is_smaller = version_compare($owner_version, GATEY_HUB_VERSION) === -1; -
gatey/trunk/readme.txt
r3435868 r3435973 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.1 7 Stable tag: 2.0. 67 Stable tag: 2.0.7 8 8 License: MIT 9 9 License URI: https://mit-license.org/ … … 184 184 == Changelog == 185 185 186 = 2.0.7 = 187 * Fix: corrected `hub-loader.php` to ensure the shared WPSuite.io admin menu loads reliably. 188 186 189 = 2.0.6 = 187 190 * Performance: corrected package entry points so the correct builds are loaded, significantly reducing shipped JS size. … … 406 409 == Upgrade Notice == 407 410 411 = 2.0.7 = 412 Fixes `hub-loader.php` to improve reliability of loading the shared WPSuite.io admin menu. Recommended update. 413 408 414 = 2.0.6 = 409 415 Performance + stability update: smaller JS payload and more reliable loading across frontend, Gutenberg and Elementor. Recommended update.
Note: See TracChangeset
for help on using the changeset viewer.