Changeset 19430 for trunk/wp-admin/includes/screen.php
- Timestamp:
- 11/23/2011 10:14:03 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/screen.php
r19428 r19430 688 688 } 689 689 690 $has_sidebar = ! empty( $this->_help_sidebar ); 691 692 $help_class = 'hidden'; 693 if ( ! $has_sidebar ) 694 $help_class .= ' no-sidebar'; 695 690 696 // Time to render! 691 697 ?> 692 698 <div id="screen-meta" class="metabox-prefs"> 693 694 <div id="contextual-help-wrap" class=" hidden">699 700 <div id="contextual-help-wrap" class="<?php echo esc_attr( $help_class ); ?>"> 695 701 <div id="contextual-help-back"></div> 696 702 <div id="contextual-help-columns"> … … 712 718 </div> 713 719 714 <?php if ( ! empty( $this->_help_sidebar )) : ?>720 <?php if ( $has_sidebar ) : ?> 715 721 <div class="contextual-help-sidebar"> 716 722 <?php echo self::$this->_help_sidebar; ?>
Note: See TracChangeset
for help on using the changeset viewer.