Skip to content

Commit

Permalink
Merge pull request #10996 from KorvinSzanto/feature/clean-up-xss
Browse files Browse the repository at this point in the history
Prevent browser blocked reflected XSS in dashboard search pages
  • Loading branch information
aembler authored and KorvinSzanto committed Oct 13, 2022
1 parent 252c38c commit 0bd6538
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion concrete/blocks/express_entry_list/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ class="table ccm-block-express-entry-list-table <?php if ($tableStriped) { ?><?p
<thead>
<tr>
<?php foreach ($result->getColumns() as $column) { ?>
<th class="<?=$column->getColumnStyleClass()?>"><a href="<?=$column->getColumnSortURL()?>"><?=$column->getColumnTitle()?></a></th>
<th class="<?=$column->getColumnStyleClass()?>">
<a href="<?=h($column->getColumnSortURL())?>"><?=$column->getColumnTitle()?></a>
</th>
<?php } ?>
</tr>
</thead>
Expand Down

0 comments on commit 0bd6538

Please sign in to comment.