Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8b13da0

Browse files
committedFeb 15, 2013
Fix #15511: XSS vulnerability when deleting a version
1 parent a1b67cc commit 8b13da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎manage_proj_ver_delete.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
# Confirm with the user
4242
helper_ensure_confirmed( lang_get( 'version_delete_sure' ) .
43-
'<br />' . lang_get( 'version' ) . ': ' . $t_version_info->version,
43+
'<br />' . lang_get( 'version' ) . ': ' . string_display_line( $t_version_info->version ),
4444
lang_get( 'delete_version_button' ) );
4545

4646
version_remove( $f_version_id );

0 commit comments

Comments
 (0)
Please sign in to comment.