From 7f562dd69f694ff4b0a826e26dbafc936470b4de Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Fri, 18 Sep 2015 16:02:24 +0000 Subject: [PATCH] Theme Editor: Change file descriptions of `header.php` and `footer.php`. `header.php` is now "Theme Header" and `footer.php` is "Theme Footer". This prevents a clash with other "Header" strings in the context of "Custom Header". Props ramiy. Fixes #32975. git-svn-id: https://develop.svn.wordpress.org/trunk@34290 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/file.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/file.php b/src/wp-admin/includes/file.php index c453765213..dbc9055360 100644 --- a/src/wp-admin/includes/file.php +++ b/src/wp-admin/includes/file.php @@ -17,8 +17,8 @@ $wp_file_descriptions = array( 'rtl.css' => __( 'RTL Stylesheet' ), 'comments.php' => __( 'Comments' ), 'comments-popup.php' => __( 'Popup Comments' ), - 'footer.php' => __( 'Footer' ), - 'header.php' => __( 'Header' ), + 'footer.php' => __( 'Theme Footer' ), + 'header.php' => __( 'Theme Header' ), 'sidebar.php' => __( 'Sidebar' ), 'archive.php' => __( 'Archives' ), 'author.php' => __( 'Author Template' ),