Changeset 3465373
- Timestamp:
- 02/19/2026 09:03:31 PM (6 weeks ago)
- Location:
- fluent-community
- Files:
-
- 6 edited
- 1 copied
-
tags/2.2.02 (copied) (copied from fluent-community/trunk)
-
tags/2.2.02/Modules/Course/Http/Controllers/CourseController.php (modified) (2 diffs)
-
tags/2.2.02/fluent-community.php (modified) (2 diffs)
-
tags/2.2.02/readme.txt (modified) (2 diffs)
-
trunk/Modules/Course/Http/Controllers/CourseController.php (modified) (2 diffs)
-
trunk/fluent-community.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fluent-community/tags/2.2.02/Modules/Course/Http/Controllers/CourseController.php
r3465178 r3465373 240 240 241 241 $courseType = $course->getCourseType(); 242 242 243 $hasPublicViewAccess = $course->privacy == 'public' && Arr::get($course->settings, 'public_lesson_view') == 'yes' && $courseType == 'self_paced'; 243 244 … … 254 255 if ($hasAcessSectionAcess) { 255 256 $unlockDate = CourseHelper::getSectionAccessDate($section, $courseType, $enrollment); 256 if ( !$unlockDate ||strtotime($unlockDate) > current_time('timestamp')) {257 if ($unlockDate && strtotime($unlockDate) > current_time('timestamp')) { 257 258 $hasAcessSectionAcess = false; 258 259 } else { -
fluent-community/tags/2.2.02/fluent-community.php
r3465233 r3465373 6 6 * Plugin Name: FluentCommunity 7 7 * Description: The super-fast Community Plugin for WordPress 8 * Version: 2.2.0 18 * Version: 2.2.02 9 9 * Author: WPManageNinja LLC 10 10 * Author URI: https://fluentcommunity.co … … 15 15 */ 16 16 17 define('FLUENT_COMMUNITY_PLUGIN_VERSION', '2.2.0 1');17 define('FLUENT_COMMUNITY_PLUGIN_VERSION', '2.2.02'); 18 18 define('FLUENT_COMMUNITY_PLUGIN_DIR', plugin_dir_path(__FILE__)); 19 19 define('FLUENT_COMMUNITY_PLUGIN_URL', plugin_dir_url(__FILE__)); -
fluent-community/tags/2.2.02/readme.txt
r3465233 r3465373 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.3 7 Stable tag: 2.2.0 17 Stable tag: 2.2.02 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 250 250 251 251 == Changelog == 252 253 = 2.2.02 (Date: Feb 19, 2026) = 254 - Hotfix: Course Enrollment Issue Fixed 252 255 253 256 = 2.2.01 (Date: Feb 19, 2026) = -
fluent-community/trunk/Modules/Course/Http/Controllers/CourseController.php
r3465178 r3465373 240 240 241 241 $courseType = $course->getCourseType(); 242 242 243 $hasPublicViewAccess = $course->privacy == 'public' && Arr::get($course->settings, 'public_lesson_view') == 'yes' && $courseType == 'self_paced'; 243 244 … … 254 255 if ($hasAcessSectionAcess) { 255 256 $unlockDate = CourseHelper::getSectionAccessDate($section, $courseType, $enrollment); 256 if ( !$unlockDate ||strtotime($unlockDate) > current_time('timestamp')) {257 if ($unlockDate && strtotime($unlockDate) > current_time('timestamp')) { 257 258 $hasAcessSectionAcess = false; 258 259 } else { -
fluent-community/trunk/fluent-community.php
r3465233 r3465373 6 6 * Plugin Name: FluentCommunity 7 7 * Description: The super-fast Community Plugin for WordPress 8 * Version: 2.2.0 18 * Version: 2.2.02 9 9 * Author: WPManageNinja LLC 10 10 * Author URI: https://fluentcommunity.co … … 15 15 */ 16 16 17 define('FLUENT_COMMUNITY_PLUGIN_VERSION', '2.2.0 1');17 define('FLUENT_COMMUNITY_PLUGIN_VERSION', '2.2.02'); 18 18 define('FLUENT_COMMUNITY_PLUGIN_DIR', plugin_dir_path(__FILE__)); 19 19 define('FLUENT_COMMUNITY_PLUGIN_URL', plugin_dir_url(__FILE__)); -
fluent-community/trunk/readme.txt
r3465233 r3465373 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.3 7 Stable tag: 2.2.0 17 Stable tag: 2.2.02 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 250 250 251 251 == Changelog == 252 253 = 2.2.02 (Date: Feb 19, 2026) = 254 - Hotfix: Course Enrollment Issue Fixed 252 255 253 256 = 2.2.01 (Date: Feb 19, 2026) =
Note: See TracChangeset
for help on using the changeset viewer.