From 11e24876fc35b7c828bcc862bb343971812e5ce7 Mon Sep 17 00:00:00 2001 From: Paul Kevan <2290623+pkevan@users.noreply.github.com> Date: Fri, 11 Oct 2024 12:49:10 +0100 Subject: [PATCH] Update require-login.php phpcs --- .../plugins/camptix/addons/require-login.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/public_html/wp-content/plugins/camptix/addons/require-login.php b/public_html/wp-content/plugins/camptix/addons/require-login.php index 6e460a1df..7bc512dec 100644 --- a/public_html/wp-content/plugins/camptix/addons/require-login.php +++ b/public_html/wp-content/plugins/camptix/addons/require-login.php @@ -772,15 +772,15 @@ public function replace_unknown_attendee_info_stubs( $ticket_info ) { public function hide_unconfirmed_attendees( $query_args ) { $meta_query = array( array( - 'key' => 'tix_username', - 'value' => self::UNCONFIRMED_USERNAME, - 'compare' => '!=', - ), - 'relation' => 'OR', - array( - 'key' => 'tix_username', - 'compare' => 'NOT EXISTS', - ) + 'key' => 'tix_username', + 'value' => self::UNCONFIRMED_USERNAME, + 'compare' => '!=', + ), + 'relation' => 'OR', + array( + 'key' => 'tix_username', + 'compare' => 'NOT EXISTS', + ) ); if ( isset( $query_args['meta_query'] ) ) {