Skip to content

Commit

Permalink
Merge pull request #11 from voceconnect/sanitize_escape_fields
Browse files Browse the repository at this point in the history
use kses_post on
  • Loading branch information
johnciacia committed Nov 14, 2014
2 parents 5b3270e + 788f4eb commit 68c1c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion post-selection-ui.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ private function render_selected_rows($post_ids) {
$output .= "<tr data-post_id='{$post_id}'>\n".
"\t<td class='psu-col-delete'><a href='#' title='Remove'></a></td>".
"\t<td class='psu-col-title'>\n";
$output .= $title; //title escaped on line 243
$output .= wp_kses_post( $title );
$output .= "\n</td>\n";
if($this->args['sortable']) {
$output .= "\t<td class='psu-col-order'>&nbsp;</td>";
Expand Down

0 comments on commit 68c1c44

Please sign in to comment.