Plugin Directory

Changeset 3465373


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

releasing FluentCommunity version 2.2.02

Location:
fluent-community
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • fluent-community/tags/2.2.02/Modules/Course/Http/Controllers/CourseController.php

    r3465178 r3465373  
    240240
    241241        $courseType = $course->getCourseType();
     242
    242243        $hasPublicViewAccess = $course->privacy == 'public' && Arr::get($course->settings, 'public_lesson_view') == 'yes' && $courseType == 'self_paced';
    243244
     
    254255            if ($hasAcessSectionAcess) {
    255256                $unlockDate = CourseHelper::getSectionAccessDate($section, $courseType, $enrollment);
    256                 if (!$unlockDate || strtotime($unlockDate) > current_time('timestamp')) {
     257                if ($unlockDate && strtotime($unlockDate) > current_time('timestamp')) {
    257258                    $hasAcessSectionAcess = false;
    258259                } else {
  • fluent-community/tags/2.2.02/fluent-community.php

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

    r3465233 r3465373  
    55Tested up to: 6.8
    66Requires PHP: 7.3
    7 Stable tag: 2.2.01
     7Stable tag: 2.2.02
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    250250
    251251== Changelog ==
     252
     253= 2.2.02 (Date: Feb 19, 2026) =
     254- Hotfix: Course Enrollment Issue Fixed
    252255
    253256= 2.2.01 (Date: Feb 19, 2026) =
  • fluent-community/trunk/Modules/Course/Http/Controllers/CourseController.php

    r3465178 r3465373  
    240240
    241241        $courseType = $course->getCourseType();
     242
    242243        $hasPublicViewAccess = $course->privacy == 'public' && Arr::get($course->settings, 'public_lesson_view') == 'yes' && $courseType == 'self_paced';
    243244
     
    254255            if ($hasAcessSectionAcess) {
    255256                $unlockDate = CourseHelper::getSectionAccessDate($section, $courseType, $enrollment);
    256                 if (!$unlockDate || strtotime($unlockDate) > current_time('timestamp')) {
     257                if ($unlockDate && strtotime($unlockDate) > current_time('timestamp')) {
    257258                    $hasAcessSectionAcess = false;
    258259                } else {
  • fluent-community/trunk/fluent-community.php

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

    r3465233 r3465373  
    55Tested up to: 6.8
    66Requires PHP: 7.3
    7 Stable tag: 2.2.01
     7Stable tag: 2.2.02
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    250250
    251251== Changelog ==
     252
     253= 2.2.02 (Date: Feb 19, 2026) =
     254- Hotfix: Course Enrollment Issue Fixed
    252255
    253256= 2.2.01 (Date: Feb 19, 2026) =
Note: See TracChangeset for help on using the changeset viewer.