Ticket #19244: get_theme-array-check.patch
| File get_theme-array-check.patch, 381 bytes (added by , 14 years ago) |
|---|
-
theme.php
496 496 function get_theme($theme) { 497 497 $themes = get_themes(); 498 498 499 if ( array_key_exists($theme, $themes) )499 if ( is_array( $themes ) && array_key_exists($theme, $themes) ) 500 500 return $themes[$theme]; 501 501 502 502 return null;