Fixed incorrect value in select options array.

This commit is contained in:
Jason Gottschalk 2012-06-06 14:01:50 -03:00
parent 55ab0fa5d6
commit 5f44856a45
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ function _s_sample_select_options() {
'label' => __( 'Four', '_s' ) 'label' => __( 'Four', '_s' )
), ),
'5' => array( '5' => array(
'value' => '3', 'value' => '5',
'label' => __( 'Five', '_s' ) 'label' => __( 'Five', '_s' )
) )
); );