Skip to content

Commit

Permalink
Fixed #7449: Hard-coded capitalization in stats page breaks localizat…
Browse files Browse the repository at this point in the history
…ion.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@4164 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed Sep 20, 2006
1 parent 4323d9e commit 0527c92
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions summary_page.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: summary_page.php,v 1.48 2005-12-07 22:25:39 prichards Exp $
# $Id: summary_page.php,v 1.49 2006-09-20 04:31:44 vboctor Exp $
# --------------------------------------------------------
?>
<?php
Expand Down Expand Up @@ -100,7 +100,7 @@
$t_orcttab = "";
foreach ( $t_orct_arr as $t_orct_s ) {
$t_orcttab .= '<td class="right">';
$t_orcttab .= ucwords( $t_orct_s );
$t_orcttab .= $t_orct_s;
$t_orcttab .= '</td>';
}
?>
Expand Down Expand Up @@ -324,7 +324,7 @@
print '<td>';
$t_s = explode_enum_arr( $t_arr[$i] );
$c_s[0] = db_prepare_string( $t_s[0] );
echo ucwords( get_enum_element( 'resolution', $c_s[0] ) );
echo get_enum_element( 'resolution', $c_s[0] );
print '</td>';
}

Expand Down Expand Up @@ -354,7 +354,7 @@
print '<td>';
$t_s = explode_enum_arr( $t_arr[$i] );
$c_s[0] = db_prepare_string( $t_s[0] );
echo ucwords( get_enum_element( 'resolution', $c_s[0] ) );
echo get_enum_element( 'resolution', $c_s[0] );
print '</td>';
}

Expand Down

0 comments on commit 0527c92

Please sign in to comment.