Plugin Directory

Changeset 3465389


Ignore:
Timestamp:
02/19/2026 09:48:57 PM (6 weeks ago)
Author:
techjewel
Message:

releasing FluentCommunity version 2.2.03

Location:
fluent-community
Files:
4 edited
4 copied

Legend:

Unmodified
Added
Removed
  • fluent-community/tags/2.2.03/app/Services/Helper.php

    r3465178 r3465389  
    19601960
    19611961        // If portal is mounted at site root, ignore unrelated query args like page builders / previews.
    1962         if ($portalSlug === '' && $requestUri === '' && !empty($_GET) && !isset($_GET['fcom_route'])) {
     1962        if ($portalSlug === '' && $requestUri === '' && !empty($_GET) && (!isset($_GET['fcom_route']) && !isset($_GET['fcom_action']))) {
    19631963            return false;
    19641964        }
  • fluent-community/tags/2.2.03/fluent-community.php

    r3465373 r3465389  
    66 * Plugin Name: FluentCommunity
    77 * Description: The super-fast Community Plugin for WordPress
    8  * Version: 2.2.02
     8 * Version: 2.2.03
    99 * Author: WPManageNinja LLC
    1010 * Author URI: https://fluentcommunity.co
     
    1515 */
    1616
    17 define('FLUENT_COMMUNITY_PLUGIN_VERSION', '2.2.02');
     17define('FLUENT_COMMUNITY_PLUGIN_VERSION', '2.2.03');
    1818define('FLUENT_COMMUNITY_PLUGIN_DIR', plugin_dir_path(__FILE__));
    1919define('FLUENT_COMMUNITY_PLUGIN_URL', plugin_dir_url(__FILE__));
  • fluent-community/tags/2.2.03/readme.txt

    r3465373 r3465389  
    55Tested up to: 6.8
    66Requires PHP: 7.3
    7 Stable tag: 2.2.02
     7Stable tag: 2.2.03
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    251251== Changelog ==
    252252
    253 = 2.2.02 (Date: Feb 19, 2026) =
     253= 2.2.03 (Date: Feb 19, 2026) =
    254254- Hotfix: Course Enrollment Issue Fixed
     255- Hotfix: Auth Issue fixed when community is on root path
    255256
    256257= 2.2.01 (Date: Feb 19, 2026) =
  • fluent-community/trunk/app/Services/Helper.php

    r3465178 r3465389  
    19601960
    19611961        // If portal is mounted at site root, ignore unrelated query args like page builders / previews.
    1962         if ($portalSlug === '' && $requestUri === '' && !empty($_GET) && !isset($_GET['fcom_route'])) {
     1962        if ($portalSlug === '' && $requestUri === '' && !empty($_GET) && (!isset($_GET['fcom_route']) && !isset($_GET['fcom_action']))) {
    19631963            return false;
    19641964        }
  • fluent-community/trunk/fluent-community.php

    r3465373 r3465389  
    66 * Plugin Name: FluentCommunity
    77 * Description: The super-fast Community Plugin for WordPress
    8  * Version: 2.2.02
     8 * Version: 2.2.03
    99 * Author: WPManageNinja LLC
    1010 * Author URI: https://fluentcommunity.co
     
    1515 */
    1616
    17 define('FLUENT_COMMUNITY_PLUGIN_VERSION', '2.2.02');
     17define('FLUENT_COMMUNITY_PLUGIN_VERSION', '2.2.03');
    1818define('FLUENT_COMMUNITY_PLUGIN_DIR', plugin_dir_path(__FILE__));
    1919define('FLUENT_COMMUNITY_PLUGIN_URL', plugin_dir_url(__FILE__));
  • fluent-community/trunk/readme.txt

    r3465373 r3465389  
    55Tested up to: 6.8
    66Requires PHP: 7.3
    7 Stable tag: 2.2.02
     7Stable tag: 2.2.03
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    251251== Changelog ==
    252252
    253 = 2.2.02 (Date: Feb 19, 2026) =
     253= 2.2.03 (Date: Feb 19, 2026) =
    254254- Hotfix: Course Enrollment Issue Fixed
     255- Hotfix: Auth Issue fixed when community is on root path
    255256
    256257= 2.2.01 (Date: Feb 19, 2026) =
Note: See TracChangeset for help on using the changeset viewer.