- Timestamp:
- 01/22/2015 12:41:36 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/inc/theme-options.php
r29903 r31265 219 219 220 220 if ( is_rtl() ) 221 221 $default_theme_options['theme_layout'] = 'sidebar-content'; 222 222 223 223 /** … … 278 278 <span> 279 279 <img src="<?php echo esc_url( $scheme['thumbnail'] ); ?>" width="136" height="122" alt="" /> 280 <?php echo $scheme['label']; ?>280 <?php echo esc_html( $scheme['label'] ); ?> 281 281 </span> 282 282 </label> … … 317 317 <span> 318 318 <img src="<?php echo esc_url( $layout['thumbnail'] ); ?>" width="136" height="122" alt="" /> 319 <?php echo $layout['label']; ?>319 <?php echo esc_html( $layout['label'] ); ?> 320 320 </span> 321 321 </label> … … 563 563 $choices = array(); 564 564 foreach ( $layouts as $layout ) { 565 $choices[ $layout['value']] = $layout['label'];565 $choices[ $layout['value'] ] = $layout['label']; 566 566 } 567 567
Note: See TracChangeset
for help on using the changeset viewer.