Elements in select lists should not have ucfirst applied

This commit is contained in:
Geert De Deckere 2012-02-07 15:09:29 +01:00
parent 11445ad34c
commit 0962a268e1
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ function woocommerce_admin_fields($options) {
<?php
foreach ($value['options'] as $key => $val) {
?>
<option value="<?php echo esc_attr( $key ); ?>" <?php if (get_option($value['id']) == $key) { ?> selected="selected" <?php } ?>><?php echo ucfirst($val) ?></option>
<option value="<?php echo esc_attr( $key ); ?>" <?php if (get_option($value['id']) == $key) { ?> selected="selected" <?php } ?>><?php echo $val ?></option>
<?php
}
?>