Skip to content

Commit

Permalink
Rubrics: allowed HTML in Rubrics cells (GibbonEdu#1852)
Browse files Browse the repository at this point in the history
Co-authored-by: Jerry Chan <[email protected]>
  • Loading branch information
oswaldkit and Jerry Chan committed Sep 26, 2024
1 parent 1e1e61d commit e22b279
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ v28.0.00
Planner: improved default selected course in Unit Planner sidebar menu
Planner: added an Add Block to All option in Deploy Working Copy
Reports: added a Progress by Department report for viewing class criteria progress
Rubrics: allowed HTML in Rubrics cells
Staff: updated Manage Staff to override required custom fields when manually editing a staff member
Staff: updated family page on Staff Profile to exclude personal details and addresses
Students: added a notification event when student notes are edited
Expand Down
2 changes: 1 addition & 1 deletion modules/Rubrics/rubrics_edit_editCellProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

require_once '../../gibbon.php';

$_POST = $container->get(Validator::class)->sanitize($_POST);
$_POST = $container->get(Validator::class)->sanitize($_POST, ['*' => 'HTML']);

//Search & Filters
$search = $_GET['search'] ?? '';
Expand Down

0 comments on commit e22b279

Please sign in to comment.