Ticket #12846: 12846.diff
File 12846.diff, 1.8 KB (added by , 15 years ago) |
---|
-
wp-admin/includes/upgrade.php
1613 1613 if ($oldfile == 'index.php') { // Check to make sure it's not a new index 1614 1614 $index = implode('', file("$oldpath/$oldfile")); 1615 1615 if (strpos($index, 'WP_USE_THEMES') !== false) { 1616 if (! @copy(WP_CONTENT_DIR . '/themes/ default/index.php', "$site_dir/$newfile"))1616 if (! @copy(WP_CONTENT_DIR . '/themes/'.WP_FALLBACK_THEME.'/index.php', "$site_dir/$newfile")) 1617 1617 return false; 1618 1618 continue; // Don't copy anything 1619 1619 } … … 1673 1673 */ 1674 1674 function make_site_theme_from_default($theme_name, $template) { 1675 1675 $site_dir = WP_CONTENT_DIR . "/themes/$template"; 1676 $default_dir = WP_CONTENT_DIR . '/themes/ default';1676 $default_dir = WP_CONTENT_DIR . '/themes/'.WP_FALLBACK_THEME; 1677 1677 1678 1678 // Copy files from the default theme to the site theme. 1679 1679 //$files = array('index.php', 'comments.php', 'comments-popup.php', 'footer.php', 'header.php', 'sidebar.php', 'style.css'); … … 1769 1769 1770 1770 // Make the new site theme active. 1771 1771 $current_template = __get_option('template'); 1772 if ($current_template == 'default') {1772 if ($current_template == WP_FALLBACK_THEME) { 1773 1773 update_option('template', $template); 1774 1774 update_option('stylesheet', $template); 1775 1775 } -
wp-includes/comment-template.php
890 890 elseif ( file_exists( TEMPLATEPATH . $file ) ) 891 891 require( TEMPLATEPATH . $file ); 892 892 else 893 require( get_theme_root() . '/ default/comments.php');893 require( get_theme_root() . '/'.WP_FALLBACK_THEME.'/comments.php'); 894 894 } 895 895 896 896 /**