Ticket #20897: 20897.patch
File 20897.patch, 639 bytes (added by , 13 years ago) |
---|
-
wp-includes/deprecated.php
3114 3114 'AuthorName' => $theme->display('Author', false, false), 3115 3115 ); 3116 3116 3117 if ( $extra_headers = apply_filters( 'extra_theme_headers', array() ) ) { 3118 $extra_headers = array_combine( $extra_headers, $extra_headers ); // keys equal values 3119 foreach ( $extra_headers as $key ) 3120 $extra_headers[ $key ] = $theme->get( $key ); 3121 $theme_data = array_merge( $extra_headers, $theme_data ); 3122 } 3123 3117 3124 return $theme_data; 3118 3125 } 3119 3126