From 849ff56997ead75dbdbfe427d801a12b9f5bacc2 Mon Sep 17 00:00:00 2001 From: rboren Date: Tue, 8 Jun 2004 03:40:17 +0000 Subject: [PATCH] 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 --- wp-admin/templates.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/wp-admin/templates.php b/wp-admin/templates.php index 938325289a..762456a794 100644 --- a/wp-admin/templates.php +++ b/wp-admin/templates.php @@ -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;