From e0ce2dbd0f0d11946cbf9c8529cbad5e84f6c086 Mon Sep 17 00:00:00 2001 From: Ryan Boren 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: https://develop.svn.wordpress.org/trunk@1392 602fd350-edb4-49c9-b593-d223f7449a82 --- 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;