LearnPress – Course Review - Version 3.0.3

Version Description

  • Fixed displayed name of reviews in Back End Comments page.
Download this release

Release Info

Developer leehld
Plugin Icon 128x128 LearnPress – Course Review
Version 3.0.3
Comparing to
See all releases

Code changes from version 3.0.2 to 3.0.3

Files changed (3) hide show
  1. inc/functions.php +1 -1
  2. learnpress-course-review.php +3 -3
  3. readme.txt +5 -2
inc/functions.php CHANGED
@@ -213,7 +213,7 @@ function learn_press_add_course_review( $args = array() ) {
213
  $comment_id = wp_new_comment(
214
  array(
215
  'comment_post_ID' => $course_id,
216
- 'comment_author' => 'LearnPress',
217
  'comment_author_email' => $user->user_email,
218
  'comment_author_url' => '',
219
  'comment_content' => $args['content'],
213
  $comment_id = wp_new_comment(
214
  array(
215
  'comment_post_ID' => $course_id,
216
+ 'comment_author' => $user->display_name,
217
  'comment_author_email' => $user->user_email,
218
  'comment_author_url' => '',
219
  'comment_content' => $args['content'],
learnpress-course-review.php CHANGED
@@ -4,11 +4,11 @@ Plugin Name: LearnPress - Course Review
4
  Plugin URI: http://thimpress.com/learnpress
5
  Description: Adding review for course.
6
  Author: ThimPress
7
- Version: 3.0.2
8
  Author URI: http://thimpress.com
9
  Tags: learnpress
10
  Requires at least: 3.8
11
- Tested up to: 4.9.5
12
  Text Domain: learnpress-course-review
13
  Domain Path: /languages/
14
  */
@@ -17,7 +17,7 @@ Domain Path: /languages/
17
  defined( 'ABSPATH' ) || exit;
18
 
19
  define( 'LP_ADDON_COURSE_REVIEW_FILE', __FILE__ );
20
- define( 'LP_ADDON_COURSE_REVIEW_VER', '3.0.2' );
21
  define( 'LP_ADDON_COURSE_REVIEW_REQUIRE_VER', '3.0.0' );
22
 
23
  /**
4
  Plugin URI: http://thimpress.com/learnpress
5
  Description: Adding review for course.
6
  Author: ThimPress
7
+ Version: 3.0.3
8
  Author URI: http://thimpress.com
9
  Tags: learnpress
10
  Requires at least: 3.8
11
+ Tested up to: 4.9.6
12
  Text Domain: learnpress-course-review
13
  Domain Path: /languages/
14
  */
17
  defined( 'ABSPATH' ) || exit;
18
 
19
  define( 'LP_ADDON_COURSE_REVIEW_FILE', __FILE__ );
20
+ define( 'LP_ADDON_COURSE_REVIEW_VER', '3.0.3' );
21
  define( 'LP_ADDON_COURSE_REVIEW_REQUIRE_VER', '3.0.0' );
22
 
23
  /**
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: thimpress, tunnhn, kendy73
3
  Donate link:
4
  Tags: lms, elearning, e-learning, learning management system, education, course, courses, quiz, quizzes, questions, training, guru, sell courses
5
  Requires at least: 3.8
6
- Tested up to: 4.9.5
7
- Stable tag: 3.0.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -56,6 +56,9 @@ Check out <a href="http://docs.thimpress.com/learnpress" target="_blank">LearnPr
56
 
57
  == Changelog ==
58
 
 
 
 
59
  = 3.0.2 =
60
  + Used Select2 field in Widget to avoid memory limit issue when querying too large number of courses.
61
  + Hidden Reply action in back end.
3
  Donate link:
4
  Tags: lms, elearning, e-learning, learning management system, education, course, courses, quiz, quizzes, questions, training, guru, sell courses
5
  Requires at least: 3.8
6
+ Tested up to: 4.9.6
7
+ Stable tag: 3.0.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
56
 
57
  == Changelog ==
58
 
59
+ = 3.0.3 =
60
+ + Fixed displayed name of reviews in Back End Comments page.
61
+
62
  = 3.0.2 =
63
  + Used Select2 field in Widget to avoid memory limit issue when querying too large number of courses.
64
  + Hidden Reply action in back end.