Make the template editor use the home setting to find the index.

git-svn-id: http://svn.automattic.com/wordpress/trunk@1392 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
rboren 2004-06-08 03:40:17 +00:00
parent 1139d6fd36
commit 849ff56997

View File

@ -96,8 +96,15 @@ default:
}
}
$file = validate_file($file);
$real_file = '../' . $file;
$home = get_settings('home');
if ($home != '' && ('index.php' == $file || get_settings('blogfilename') == $file)) {
$home_root = str_replace('http://', '', $home);
$home_root = preg_replace('|([^/]*)(.*)|i', '$2', $home_root);
$real_file = $_SERVER['DOCUMENT_ROOT'] . $home_root . '/' . $file;
} else {
$file = validate_file($file);
$real_file = '../' . $file;
}
if (!is_file($real_file))
$error = 1;