Make get_home_path() return consistent slashes. fixes #23175.

git-svn-id: https://develop.svn.wordpress.org/trunk@23669 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2013-03-12 11:04:14 +00:00
parent 317d45f452
commit 69566bbd21
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ function get_home_path() {
$home_path = ABSPATH;
}
return $home_path;
return str_replace( '\\', '/', $home_path );
}
/**