Avoid warning when parent template does not exist.
git-svn-id: http://svn.automattic.com/wordpress/trunk@12216 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
51aaa9c7c3
commit
f0f570d098
|
@ -316,9 +316,8 @@ function get_themes() {
|
||||||
* The parent theme doesn't exist in the current theme's folder or sub folder
|
* The parent theme doesn't exist in the current theme's folder or sub folder
|
||||||
* so lets use the theme root for the parent template.
|
* so lets use the theme root for the parent template.
|
||||||
*/
|
*/
|
||||||
$parent_theme_root = $theme_files[$template]['theme_root'];
|
if ( isset($theme_files[$template]) && file_exists( $theme_files[$template]['theme_root'] . "/$template/index.php" ) ) {
|
||||||
if ( file_exists( "$parent_theme_root/$template/index.php" ) ) {
|
$template_directory = $theme_files[$template]['theme_root'] . "/$template";
|
||||||
$template_directory = "$parent_theme_root/$template";
|
|
||||||
} else {
|
} else {
|
||||||
$wp_broken_themes[$name] = array('Name' => $name, 'Title' => $title, 'Description' => __('Template is missing.'));
|
$wp_broken_themes[$name] = array('Name' => $name, 'Title' => $title, 'Description' => __('Template is missing.'));
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue