Changeset 32822 for trunk/src/wp-includes/class-wp-customize-section.php
- Timestamp:
- 06/17/2015 07:47:58 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-section.php
r32806 r32822 224 224 */ 225 225 public function json() { 226 $array = wp_array_slice_assoc( (array) $this, array( 'id', 'title', 'description', 'priority', 'panel', 'type' ) ); 226 $array = wp_array_slice_assoc( (array) $this, array( 'id', 'description', 'priority', 'panel', 'type' ) ); 227 $array['title'] = html_entity_decode( $this->title, ENT_QUOTES, get_bloginfo( 'charset' ) ); 227 228 $array['content'] = $this->get_content(); 228 229 $array['active'] = $this->active();
Note: See TracChangeset
for help on using the changeset viewer.