PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.7
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.7
4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 4.2.1 All 138 releases
← All changes | inc/Models/Question/QuestionAnswerModel.php +1 -1 4.4.34.4.7 View file →
@@ -160,9 +160,9 @@
160 160 * @throws Exception
161 161 */
162 162 public function check_capabilities_create() {
163 163 $user = wp_get_current_user();
164 - if ( ! user_can( $user, 'edit_' . LP_LESSON_CPT . 's' ) ) {
164 + if ( ! user_can( $user, 'edit_' . LP_LESSON_CPT, $this->question_id ) ) {
165 165 throw new Exception( __( 'You do not have permission to create answer.', 'learnpress' ) );
166 166 }
167 167 }
168 168