Skip to content

Commit

Permalink
Merge pull request #43 from CodeProKid/bug/42
Browse files Browse the repository at this point in the history
fixes #42 repleces esc_html with esc_textarea where appropriate
  • Loading branch information
CodeProKid authored Oct 12, 2017
2 parents 794d3a1 + 284a371 commit 5c6dd32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/admin/class-dfm-transient-meta-ui.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public function render_transient_list( $object ) {

echo '<tr>';
echo '<td>' . esc_html( $transient_key ) . '</td>';
echo '<td><textarea cols="50" disabled>' . esc_html( $data ) . '</textarea></td>';
echo '<td><textarea cols="50" disabled>' . esc_textarea( $data ) . '</textarea></td>';
echo '<td>' . esc_html( $expiration ) . '</td>';
echo '</tr>';

Expand Down

0 comments on commit 5c6dd32

Please sign in to comment.