From 31d72b0d4e85c8cad3d44b0941f809dde5ce2994 Mon Sep 17 00:00:00 2001 From: Scott Kingsley Clark Date: Sun, 18 Aug 2024 11:25:41 -0500 Subject: [PATCH] Fix php issue --- includes/access.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/includes/access.php b/includes/access.php index 76383ae544..76bb9d7287 100644 --- a/includes/access.php +++ b/includes/access.php @@ -761,14 +761,12 @@ function pods_is_type_public( array $args, string $context = 'shortcode' ): bool * @type Pod|null $pod The Pod object (if built or provided). * } * @param string|null $context The context we are checking from (shortcode or null). - * @param Pod|null $pod The Pod object if set. */ return (bool) apply_filters( 'pods_is_type_public', $is_public, $info, - $context, - $pod + $context ); }