From c93efa866eab2c046e39c498645605e2944b9e84 Mon Sep 17 00:00:00 2001 From: ryan Date: Sun, 11 Jun 2006 06:43:54 +0000 Subject: [PATCH] Include file renames. #2525 git-svn-id: http://svn.automattic.com/wordpress/trunk@3862 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin.php | 2 +- wp-admin/index.php | 2 +- wp-admin/users.php | 2 +- wp-includes/{functions-compat.php => compat.php} | 0 wp-includes/{feed-functions.php => feed.php} | 0 .../{functions-formatting.php => formatting.php} | 0 wp-includes/functions.php | 2 +- ...late-functions-general.php => general-template.php} | 0 ...{template-functions-links.php => link-template.php} | 0 wp-includes/{pluggable-functions.php => pluggable.php} | 0 .../{registration-functions.php => registration.php} | 0 wp-includes/{rss-functions.php => rss.php} | 0 wp-register.php | 2 +- wp-settings.php | 10 +++++----- 14 files changed, 10 insertions(+), 10 deletions(-) rename wp-includes/{functions-compat.php => compat.php} (100%) rename wp-includes/{feed-functions.php => feed.php} (100%) rename wp-includes/{functions-formatting.php => formatting.php} (100%) rename wp-includes/{template-functions-general.php => general-template.php} (100%) rename wp-includes/{template-functions-links.php => link-template.php} (100%) rename wp-includes/{pluggable-functions.php => pluggable.php} (100%) rename wp-includes/{registration-functions.php => registration.php} (100%) rename wp-includes/{rss-functions.php => rss.php} (100%) diff --git a/wp-admin/admin.php b/wp-admin/admin.php index 916200eb6..64632e95b 100644 --- a/wp-admin/admin.php +++ b/wp-admin/admin.php @@ -9,7 +9,7 @@ if ( get_option('db_version') != $wp_db_version ) require_once(ABSPATH . 'wp-admin/admin-functions.php'); require_once(ABSPATH . 'wp-admin/admin-db.php'); -require_once(ABSPATH . WPINC . '/registration-functions.php'); +require_once(ABSPATH . WPINC . '/registration.php'); auth_redirect(); diff --git a/wp-admin/index.php b/wp-admin/index.php index 2775ec15d..aafc7963c 100644 --- a/wp-admin/index.php +++ b/wp-admin/index.php @@ -2,7 +2,7 @@ require_once('admin.php'); $title = __('Dashboard'); require_once('admin-header.php'); -require_once (ABSPATH . WPINC . '/rss-functions.php'); +require_once (ABSPATH . WPINC . '/rss.php'); $today = current_time('mysql', 1); ?> diff --git a/wp-admin/users.php b/wp-admin/users.php index 70d978cf9..5f5f0269c 100644 --- a/wp-admin/users.php +++ b/wp-admin/users.php @@ -1,6 +1,6 @@ install.php."), $link)); } -require (ABSPATH . WPINC . '/functions-formatting.php'); +require (ABSPATH . WPINC . '/formatting.php'); require (ABSPATH . WPINC . '/capabilities.php'); require (ABSPATH . WPINC . '/classes.php'); require (ABSPATH . WPINC . '/query.php'); require (ABSPATH . WPINC . '/theme.php'); require (ABSPATH . WPINC . '/user.php'); -require (ABSPATH . WPINC . '/template-functions-general.php'); -require (ABSPATH . WPINC . '/template-functions-links.php'); +require (ABSPATH . WPINC . '/general-template.php'); +require (ABSPATH . WPINC . '/link-template.php'); require (ABSPATH . WPINC . '/author-template.php'); require (ABSPATH . WPINC . '/post.php'); require (ABSPATH . WPINC . '/post-template.php'); @@ -139,7 +139,7 @@ require (ABSPATH . WPINC . '/category-template.php'); require (ABSPATH . WPINC . '/comment.php'); require (ABSPATH . WPINC . '/comment-template.php'); require (ABSPATH . WPINC . '/rewrite.php'); -require (ABSPATH . WPINC . '/feed-functions.php'); +require (ABSPATH . WPINC . '/feed.php'); require (ABSPATH . WPINC . '/bookmark.php'); require (ABSPATH . WPINC . '/bookmark-template.php'); require (ABSPATH . WPINC . '/kses.php'); @@ -183,7 +183,7 @@ if ( get_settings('active_plugins') ) { } } -require (ABSPATH . WPINC . '/pluggable-functions.php'); +require (ABSPATH . WPINC . '/pluggable.php'); if ( defined('WP_CACHE') && function_exists('wp_cache_postload') ) wp_cache_postload();