Skip to content

Commit f26c576

Browse files
committed
Build for 8.0.2
1 parent e13f6d1 commit f26c576

11 files changed

+40
-31
lines changed

.changelogs/fix-form-field-selected-escaping.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changelogs/fix_access-plan-remove.yml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changelogs/limit-student-viewing-for-instructors-and-assistant.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changelogs/update-helper-3.5.5.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,36 @@
11
LifterLMS Changelog
22
===================
33

4+
v8.0.2 - 2025-03-17
5+
-------------------
6+
7+
##### Bug Fixes
8+
9+
+ Avoid escaping the selected attribute of a form field select dropdown incorrectly.
10+
+ Adds additional verifications on permission for bulk enrolls, and REST API access for instructors.
11+
+ Updates helper library to remove depreciated notice when adding a license key.
12+
13+
##### Security Fixes
14+
15+
+ Additional checks for managing LifterLMS data. Thanks [@mikemyers](https://github.com/mikemyers)!
16+
17+
##### Updated Templates
18+
19+
+ [templates/course/favorite.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/course/favorite.php)
20+
+ [templates/course/lesson-preview.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/course/lesson-preview.php)
21+
+ [templates/global/form-login.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/global/form-login.php)
22+
+ [templates/global/form-registration.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/global/form-registration.php)
23+
+ [templates/loop/featured-pricing.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/loop/featured-pricing.php)
24+
+ [templates/myaccount/form-edit-account.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/myaccount/form-edit-account.php)
25+
+ [templates/myaccount/form-redeem-voucher.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/myaccount/form-redeem-voucher.php)
26+
+ [templates/myaccount/my-grades-single.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/myaccount/my-grades-single.php)
27+
+ [templates/notifications/basic.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/notifications/basic.php)
28+
+ [templates/product/access-plan-button.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/product/access-plan-button.php)
29+
+ [templates/product/free-enroll-form.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/product/free-enroll-form.php)
30+
+ [templates/quiz/questions/description.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/quiz/questions/description.php)
31+
+ [templates/quiz/results-attempt-questions-list.php](https://github.com/gocodebox/lifterlms/blob/8.0.2/templates/quiz/results-attempt-questions-list.php)
32+
33+
434
v8.0.1 - 2025-02-06
535
-------------------
636

class-lifterlms.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ final class LifterLMS {
3434
*
3535
* @var string
3636
*/
37-
public $version = '8.0.1';
37+
public $version = '8.0.2';
3838

3939
/**
4040
* LLMS_Assets instance

includes/class.llms.user.permissions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function editable_roles( $all_roles ) {
103103
/**
104104
* Filter the WP_User_Query args to ensure that instructors can only see their students
105105
*
106-
* @since [version]
106+
* @since 8.0.2
107107
*
108108
* @param array $args WP_User_Query args.
109109
* @param WP_REST_Request $request Request object.

includes/llms.functions.core.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ function llms_get_engagement_triggers() {
477477
* Verify if the current user can edit the given product id (course or membership).
478478
*
479479
* @param $product_id
480-
* @since [version]
480+
* @since 8.0.2
481481
*
482482
* @return bool
483483
*/

lifterlms.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: LifterLMS
1111
* Plugin URI: https://lifterlms.com/
1212
* Description: Complete e-learning platform to sell online courses, protect lessons, offer memberships, and quiz students. WP Learning Management System.
13-
* Version: 8.0.1
13+
* Version: 8.0.2
1414
* Author: LifterLMS
1515
* Author URI: https://lifterlms.com/
1616
* Text Domain: lifterlms

package-lock.json

Lines changed: 5 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)