Skip to content

Commit

Permalink
Escape string prior to displaying
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2897 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
mantis committed Aug 28, 2004
1 parent 768617a commit cb9e80d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion view_filters_page.php
Expand Up @@ -431,7 +431,7 @@ function SwitchDateFields() {
for( $j = 0; $j < $t_per_row; $j++ ) {
echo '<td class="small-caption" colspan="' . ( 1 * $t_filter_cols ) . '">';
if ( isset( $t_accessible_custom_fields_names[$t_base + $j] ) ) {
echo lang_get_defaulted( $t_accessible_custom_fields_names[$t_base + $j] );
echo string_display( lang_get_defaulted( $t_accessible_custom_fields_names[$t_base + $j] ) );
} else {
echo '&nbsp;';
}
Expand Down

0 comments on commit cb9e80d

Please sign in to comment.