From b7bec72db3913f19ee1a93b6beefaebfd673472f Mon Sep 17 00:00:00 2001 From: Paul Kevan Date: Thu, 16 May 2024 09:57:32 +0100 Subject: [PATCH] Reorder includes to be alphabetic --- plugins/wporg-5ftf/index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/wporg-5ftf/index.php b/plugins/wporg-5ftf/index.php index 5744f10..6cda33a 100755 --- a/plugins/wporg-5ftf/index.php +++ b/plugins/wporg-5ftf/index.php @@ -28,13 +28,13 @@ function load() { require_once get_includes_path() . 'authentication.php'; require_once get_includes_path() . 'contributor.php'; require_once get_includes_path() . 'email.php'; - require_once get_includes_path() . 'pledge.php'; - require_once get_includes_path() . 'pledge-meta.php'; - require_once get_includes_path() . 'pledge-form.php'; - require_once get_includes_path() . 'xprofile.php'; require_once get_includes_path() . 'endpoints.php'; require_once get_includes_path() . 'miscellaneous.php'; + require_once get_includes_path() . 'pledge.php'; + require_once get_includes_path() . 'pledge-form.php'; + require_once get_includes_path() . 'pledge-meta.php'; require_once get_includes_path() . 'stats.php'; + require_once get_includes_path() . 'xprofile.php'; // The logger expects things like `$_POST` which aren't set during unit tests. if ( ! $running_unit_tests ) {