diff --git a/wp-admin/includes/misc.php b/wp-admin/includes/misc.php
index 7b2301a2a9..7f5952c895 100644
--- a/wp-admin/includes/misc.php
+++ b/wp-admin/includes/misc.php
@@ -333,7 +333,7 @@ function wp_print_theme_file_tree( $tree, $level = 2, $size = 1, $index = 1 ) {
'file' => rawurlencode( $tree ),
'theme' => rawurlencode( $stylesheet ),
),
- admin_url( 'theme-editor.php' )
+ self_admin_url( 'theme-editor.php' )
);
?>
@@ -421,7 +421,7 @@ function wp_print_plugin_file_tree( $tree, $label = '', $level = 2, $size = 1, $
'file' => rawurlencode( $tree ),
'plugin' => rawurlencode( $plugin ),
),
- admin_url( 'plugin-editor.php' )
+ self_admin_url( 'plugin-editor.php' )
);
?>
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 3ccfcf06d5..2e06e30062 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.9-RC1-42114';
+$wp_version = '4.9-RC1-42115';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.