Changeset 18945 for trunk/wp-admin/includes/screen.php
- Timestamp:
- 10/11/2011 09:45:28 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/screen.php
r18943 r18945 663 663 664 664 // Call old contextual_help_list filter. 665 self::$_old_compat_help = apply_filters( 'contextual_help_list', self::$_old_compat_help );665 self::$_old_compat_help = apply_filters( 'contextual_help_list', self::$_old_compat_help, $this ); 666 666 667 667 if ( isset( self::$_old_compat_help[ $this->id ] ) || empty(self::$_help_tabs[ $this->id ] ) ) { 668 668 // Call old contextual_help filter. 669 669 if ( isset( self::$_old_compat_help[ $this->id ] ) ) 670 $contextual_help = apply_filters( 'contextual_help', self::$_old_compat_help[ $this->id ], $this->id );670 $contextual_help = apply_filters( 'contextual_help', self::$_old_compat_help[ $this->id ], $this->id, $this ); 671 671 672 672 if ( empty( $contextual_help ) ) {
Note: See TracChangeset
for help on using the changeset viewer.