Make WordPress Core

Ticket #18691: current_theme_supports-2.diff

File current_theme_supports-2.diff, 799 bytes (added by ericmann, 13 years ago)

Change variable name to match what we're doing. Use a cleaner return.

  • wp-includes/theme.php

     
    19471947                        if ( true === $_wp_theme_features[$feature] )  // Registered for all types
    19481948                                return true;
    19491949                        $content_type = $args[0];
    1950                         if ( in_array($content_type, $_wp_theme_features[$feature][0]) )
    1951                                 return true;
    1952                         else
    1953                                 return false;
     1950                        return in_array( $content_type, $_wp_theme_features[$feature][0] );
    19541951                        break;
     1952
     1953                case 'post-formats':
     1954                        // specific post formats can be registered by passing an array of types to
     1955                        // add_theme_support()
     1956                        $post_format = $args[0];
     1957                        return in_array( $post_format, $_wp_theme_features[$feature][0] );
     1958                        break;
    19551959        }
    19561960
    19571961        return true;