Changeset 18914 for trunk/wp-admin/includes/screen.php
- Timestamp:
- 10/07/2011 05:23:33 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/screen.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/screen.php
r18913 r18914 267 267 * 268 268 * @param string $option An option name. 269 * @param mixed $args Option dependent arguments269 * @param mixed $args Option-dependent arguments. 270 270 * @return void 271 271 */ … … 577 577 * 578 578 * @param string $option Option ID 579 * @param array $args Associative array of arguments particular to the given $option.579 * @param mixed $args Option-dependent arguments. 580 580 */ 581 581 public function add_option( $option, $args = array() ) { … … 659 659 'callback' => array( $this, 'render_screen_options' ), 660 660 ) ); 661 $_options_tab = array_pop( $this->_help_tabs ); 662 array_unshift( $this->_help_tabs, $_options_tab ); 661 663 } 662 664 … … 758 760 ?> 759 761 <form id="adv-settings" action="" method="post"> 760 <?php if ( isset( $wp_meta_boxes[ $this->id ] ) ) : ?> 762 <?php 763 if ( isset( $this->_options['overview'] ) ) 764 echo $this->_options['overview']; 765 if ( isset( $wp_meta_boxes[ $this->id ] ) ) : ?> 761 766 <h5><?php _ex('Show on screen', 'Metaboxes') ?></h5> 762 767 <div class="metabox-prefs">
Note: See TracChangeset
for help on using the changeset viewer.