Skip to content

Commit

Permalink
add texteditor to field
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasKrais committed Dec 14, 2021
1 parent 5027b68 commit e84bc09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/course.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
d2u_addon_backend_helper::form_checkbox('d2u_helper_online_status', 'form[online_status]', 'online', $course->online_status == "online", $readonly);
d2u_addon_backend_helper::form_input('d2u_courses_teaser', "form[teaser]", $course->teaser, FALSE, $readonly, FALSE);
d2u_addon_backend_helper::form_textarea('d2u_courses_description', "form[description]", $course->description, 5, FALSE, $readonly, TRUE);
d2u_addon_backend_helper::form_textarea('d2u_courses_details_course', "form[details_course]", $course->details_course, 3, FALSE, $readonly, FALSE);
d2u_addon_backend_helper::form_textarea('d2u_courses_details_course', "form[details_course]", $course->details_course, 3, FALSE, $readonly, TRUE);
d2u_addon_backend_helper::form_textarea('d2u_courses_details_deadline', "form[details_deadline]", $course->details_deadline, 3, FALSE, $readonly, FALSE);
d2u_addon_backend_helper::form_input('d2u_courses_details_age', 'form[details_age]', $course->details_age, FALSE, $readonly, 'text');
d2u_addon_backend_helper::form_mediafield('d2u_helper_picture', '1', $course->picture, $readonly);
Expand Down

0 comments on commit e84bc09

Please sign in to comment.