Skip to content

Commit c6371fa

Browse files
atroldregad
authored andcommitted
Fix XSS on repo_manage_page
1 parent 8878a45 commit c6371fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/pages/repo_manage_page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function convert_to_key_value( $p_array ) {
123123
?>
124124
<tr>
125125
<td class="category"><?php echo plugin_lang_get_defaulted( $t_key, $t_key, $t_vcs->basename ) ?></td>
126-
<td><?php echo is_bool( $t_value ) ? trans_bool( $t_value ) : $t_value ?></td>
126+
<td><?php echo is_bool( $t_value ) ? trans_bool( $t_value ) : string_display_line( $t_value )?></td>
127127
</tr>
128128
<?php } ?>
129129
</table>

0 commit comments

Comments
 (0)