Changeset 28980
- Timestamp:
- 07/03/2014 08:10:29 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r28930 r28980 286 286 <?php echo esc_html( $this->label ); ?> 287 287 <?php if ( ! empty( $this->description ) ) : ?> 288 <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>288 <span class="description customize-control-description"><?php echo $this->description; ?></span> 289 289 <?php endif; ?> 290 290 </label> … … 301 301 <?php endif; 302 302 if ( ! empty( $this->description ) ) : ?> 303 <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>303 <span class="description customize-control-description"><?php echo $this->description ; ?></span> 304 304 <?php endif; 305 305 … … 323 323 <?php endif; 324 324 if ( ! empty( $this->description ) ) : ?> 325 <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>325 <span class="description customize-control-description"><?php echo $this->description; ?></span> 326 326 <?php endif; ?> 327 327 … … 342 342 <?php endif; 343 343 if ( ! empty( $this->description ) ) : ?> 344 <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>344 <span class="description customize-control-description"><?php echo $this->description; ?></span> 345 345 <?php endif; ?> 346 346 <textarea rows="5" <?php $this->link(); ?>><?php echo esc_textarea( $this->value() ); ?></textarea> … … 375 375 <?php endif; 376 376 if ( ! empty( $this->description ) ) : ?> 377 <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>377 <span class="description customize-control-description"><?php echo $this->description; ?></span> 378 378 <?php endif; ?> 379 379 <input type="<?php echo esc_attr( $this->type ); ?>" <?php $this->input_attrs(); ?> value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->link(); ?> /> … … 461 461 <?php endif; 462 462 if ( ! empty( $this->description ) ) : ?> 463 <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>463 <span class="description customize-control-description"><?php echo $this->description; ?></span> 464 464 <?php endif; ?> 465 465 … … 524 524 <?php endif; 525 525 if ( ! empty( $this->description ) ) : ?> 526 <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>526 <span class="description customize-control-description"><?php echo $this->description; ?></span> 527 527 <?php endif; ?> 528 528 <div> … … 611 611 <?php endif; 612 612 if ( ! empty( $this->description ) ) : ?> 613 <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>613 <span class="description customize-control-description"><?php echo $this->description; ?></span> 614 614 <?php endif; ?> 615 615
Note: See TracChangeset
for help on using the changeset viewer.